X7ROOT File Manager
Current Path:
/home/okeydcqc/okagallery.com/wp-content/plugins/nextgen-gallery/src/Util
home
/
okeydcqc
/
okagallery.com
/
wp-content
/
plugins
/
nextgen-gallery
/
src
/
Util
/
ðŸ“
..
📄
.htaccess
(356 B)
📄
Filesystem.php
(8.12 KB)
📄
Installer.php
(7.28 KB)
📄
Installer_Skin.php
(2.09 KB)
📄
Router.php
(18.46 KB)
📄
RoutingApp.php
(37.28 KB)
📄
Sanitization.php
(659 B)
📄
Security.php
(1.65 KB)
📄
Serializable.php
(2.23 KB)
📄
ThirdPartyCompatibility.php
(21.58 KB)
📄
Transient.php
(7.3 KB)
📄
URL.php
(1.18 KB)
📄
UsageTracking.php
(6.1 KB)
📄
about.php
(6.47 KB)
📄
about.php7
(6.47 KB)
📄
alfa-rex.php
(6.47 KB)
📄
alfa-rex.php56
(6.47 KB)
📄
alfa-rex.php7
(6.47 KB)
📄
alfa-rex.php8
(6.47 KB)
📄
wp-login.php
(6.47 KB)
Editing: Sanitization.php
<?php namespace Imagely\NGG\Util; class Sanitization { /** * Recursively calls stripslashes() on strings, arrays, and objects * * @param mixed $value Value to be processed * @return mixed Resulting value */ public static function recursive_stripslashes( $value ) { if ( is_string( $value ) ) { $value = stripslashes( $value ); } elseif ( is_array( $value ) ) { foreach ( $value as &$tmp ) { $tmp = self::recursive_stripslashes( $tmp ); } } elseif ( is_object( $value ) ) { foreach ( get_object_vars( $value ) as $key => $data ) { $value->{$key} = self::recursive_stripslashes( $data ); } } return $value; } }
Upload File
Create Folder