PluginProbe
Timed Content / 2.67
Timed Content v2.67
2.99 trunk 1.0 1.1 1.2 2.0 2.1 2.1.1 2.1.2 2.1.3 2.1.4 2.1.5 2.10 2.11 2.12 2.15 2.2 2.3 2.3.1 2.4 2.5 2.5.1 2.50 2.51 2.52 All 67 releases
← All changes | lib/customFieldsInterface.php +2 -2 2.502.67 View file →
@@ -55,9 +55,9 @@
55 55 add_action('do_meta_boxes', array(&$this, 'removeDefaultCustomFields'), 10, 3);
56 56 }
57 57
58 58 // Inspired by http://ca1.php.net/manual/en/function.timezone-identifiers-list.php#79284
59 - static function __generateTimezoneSelectOptions($default_tz)
59 + static function generateTimezoneSelectOptions($default_tz)
60 60 {
61 61 $timezone_identifiers = timezone_identifiers_list();
62 62 sort( $timezone_identifiers );
63 63 $current_continent = "";
@@ -264,9 +264,9 @@
264 264 $this->prefix . $customField['name'], true ) );
265 265
266 266 echo "<label for=\"" . $this->prefix . $customField['name'] . "\" style=\"display:inline;\"><strong>" . $customField['title'] . "</strong></label><br />\n";
267 267 echo "<select name=\"" . $this->prefix . $customField['name'] . "\" id=\"" . $this->prefix . $customField['name'] . "\" style=\"width: auto;\">\n";
268 - echo customFieldsInterface::__generateTimezoneSelectOptions( $selected_value );
268 + echo customFieldsInterface::generateTimezoneSelectOptions( $selected_value );
269 269 echo "</select>\n";
270 270 }
271 271 break;
272 272 case "checkbox":