Changeset 31684
- Timestamp:
- 03/09/2015 02:24:43 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/widgets.php
r31188 r31684 163 163 $this->widget_options = wp_parse_args( $widget_options, array('classname' => $this->option_name) ); 164 164 $this->control_options = wp_parse_args( $control_options, array('id_base' => $this->id_base) ); 165 }166 167 /**168 * PHP4 constructor169 *170 * @param string $id_base171 * @param string $name172 * @param array $widget_options173 * @param array $control_options174 */175 public function WP_Widget( $id_base, $name, $widget_options = array(), $control_options = array() ) {176 WP_Widget::__construct( $id_base, $name, $widget_options, $control_options );177 165 } 178 166
Note: See TracChangeset
for help on using the changeset viewer.