Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #27805, comment 2


Ignore:
Timestamp:
04/15/2014 07:58:54 AM (11 years ago)
Author:
Denis-de-Bernardy
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #27805, comment 2

    initial v1  
    33{{{
    44function __call($name, $args) {
    5    if (preg_match("/widget_settings_handler_([^a-zA-Z0-9_]+)/", $name, $match) {
     5   if (preg_match("/widget_settings_handler_([a-zA-Z0-9_]+)/", $name, $match) {
    66      return $this->widget_settings_handler($match[1], $args);
    77   }