Changeset 7290
- Timestamp:
- 07/22/2013 07:02:27 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-groups/bp-groups-widgets.php
r7210 r7290 20 20 21 21 class BP_Groups_Widget extends WP_Widget { 22 function bp_groups_widget() {23 $this->_construct();24 }25 26 22 function __construct() { 27 23 $widget_ops = array( … … 35 31 wp_enqueue_script( 'groups_widget_groups_list-js', BP_PLUGIN_URL . "bp-groups/js/widget-groups{$min}.js", array( 'jquery' ), bp_get_version() ); 36 32 } 33 } 34 35 /** 36 * PHP4 constructor 37 * 38 * For backward compatibility only 39 */ 40 function bp_groups_widget() { 41 $this->_construct(); 37 42 } 38 43
Note: See TracChangeset
for help on using the changeset viewer.