PluginProbe
CSS & JavaScript Toolbox / 11.5
CSS & JavaScript Toolbox v11.5
trunk 0.3 0.8 10 10.1 11 11.2 11.3 11.4 11.5 11.6 11.7 11.8 11.9 11.9.1 12 12.0 12.0.1 12.0.3 12.0.4 12.0.5 12.0.6 12.0.7 6.0 6.0.11 All 60 releases
← All changes | framework/mvc/controller-ajax.inc.php +1 -1 1011.5 View file →
@@ -108,9 +108,9 @@
108 108 // Get method name from action name.
109 109 $method = ucfirst(str_replace('_', ' ', $method));
110 110 $method = str_replace(' ', '', $method);
111 111 // Lower case the first character.
112 - $method = strtolower($method{0}) . substr($method, 1);
112 + $method = strtolower($method[0]) . substr($method, 1);
113 113 // Cahe method name for child classes to use!
114 114 $this->methodName = $method;
115 115 // Relying on the trailer "Action" for security.
116 116 // Derivded class should not never use trailer "Action"