Changeset 24296
- Timestamp:
- 05/19/2013 12:32:20 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/widgets.php
r24126 r24296 70 70 71 71 // Functions you'll need to call. 72 73 /**74 * PHP4 constructor75 */76 function WP_Widget( $id_base, $name, $widget_options = array(), $control_options = array() ) {77 WP_Widget::__construct( $id_base, $name, $widget_options, $control_options );78 }79 72 80 73 /** … … 97 90 $this->widget_options = wp_parse_args( $widget_options, array('classname' => $this->option_name) ); 98 91 $this->control_options = wp_parse_args( $control_options, array('id_base' => $this->id_base) ); 92 } 93 94 /** 95 * PHP4 constructor 96 */ 97 function WP_Widget( $id_base, $name, $widget_options = array(), $control_options = array() ) { 98 WP_Widget::__construct( $id_base, $name, $widget_options, $control_options ); 99 99 } 100 100
Note: See TracChangeset
for help on using the changeset viewer.