mirror of
https://github.com/Studio-42/elFinder
synced 2026-06-08 12:37:09 +00:00
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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user