| @@ -3,10 +3,9 @@ | ||
| 3 | 3 | /* |
| 4 | 4 | Plugin Name: bbP private groups |
| 5 | 5 | Plugin URI: http://www.rewweb.co.uk/bbp-private-groups/ |
| 6 | 6 | Description: This plugin adds private groups to the forums, allocating users to groups, and combinations of forums to those groups, creating multiple closed forums. |
| 7 | -Version: 2.5 | |
| 8 | -Text Domain: bbp-private-groups | |
| 7 | +Version: 2.4 | |
| 9 | 8 | Author: Robin Wilson |
| 10 | 9 | Author URI: http://www.rewweb.co.uk |
| 11 | 10 | License: GPL2 |
| 12 | 11 | */ |
| @@ -38,13 +37,8 @@ | ||
| 38 | 37 | $rpg_roles = get_option ( 'rpg_roles') ; |
| 39 | 38 | |
| 40 | 39 | if(!defined('PG_PLUGIN_DIR')) |
| 41 | 40 | define('PG_PLUGIN_DIR', dirname(__FILE__)); |
| 42 | - | |
| 43 | -function myplugin_init() { | |
| 44 | - load_plugin_textdomain( 'bbp-private-groups', false, PG_PLUGIN_DIR . '/lang/' ); | |
| 45 | -} | |
| 46 | -add_action('plugins_loaded', 'myplugin_init'); | |
| 47 | 41 | |
| 48 | 42 | |
| 49 | 43 | /******************************************* |
| 50 | 44 | * file includes |
| @@ -63,7 +57,6 @@ | ||
| 63 | 57 | include(PG_PLUGIN_DIR . '/includes/shortcodes.php'); |
| 64 | 58 | include(PG_PLUGIN_DIR . '/includes/user_management.php'); |
| 65 | 59 | include(PG_PLUGIN_DIR . '/includes/role_assignment.php'); |
| 66 | 60 | include(PG_PLUGIN_DIR . '/includes/help.php'); |
| 67 | - | |
| 68 | 61 | |
| 69 | 62 | |