Make elFinderConnector::input_filter() protected

Given that almost all methods, `elFinderConnector` provides are already protected (or public), thus is meant to be sub-classed and 'input_filter()` is useful in derived classes, too, make it protected instead of private.
This commit is contained in:
Rainer Rillke
2015-09-10 14:44:46 +02:00
parent 2334de1e43
commit 259df6a2f9
+1 -1
View File
@@ -140,7 +140,7 @@ class elFinderConnector {
* @return mixed
* @author Naoki Sawada
*/
private function input_filter($args) {
protected function input_filter($args) {
static $magic_quotes_gpc = NULL;
if ($magic_quotes_gpc === NULL)