PATH:
var
/
www
/
clients
/
client1
/
web1
/
web
/
wp-content
/
plugins
/
nextgen-gallery
/
src
/
Util
<?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; } }
[-] UsageTracking.php
[edit]
[-] Installer_Skin.php
[edit]
[-] Sanitization.php
[edit]
[-] Transient.php
[edit]
[-] Router.php
[edit]
[-] RoutingApp.php
[edit]
[-] URL.php
[edit]
[-] Filesystem.php
[edit]
[-] ThirdPartyCompatibility.php
[edit]
[-] Serializable.php
[edit]
[+]
..
[-] LicenseHelper.php
[edit]
[-] Installer.php
[edit]
[-] Security.php
[edit]