PluginProbe
Private groups / 2.4
Private groups v2.4
trunk 1.5 1.6 1.7 1.8 1.8.1 1.9.1 1.9.2 2.0 2.0.1 2.2 2.3 2.4 2.5 2.5.2 2.5.3 2.5.4 2.5.5 2.5.6 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 All 116 releases
← All changes | bbp-private-groups.php +1 -8 2.52.4 View file →
@@ -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