'Custom', 'icon' => 'images/object.png', 'handler' => 'custom.php' ); // Strip slashes from GET, POST, and COOKIE variables if this // PHP install is configured to automatically addslashes() if ( get_magic_quotes_gpc() && ( ! isset( $slashes_stripped ) || ! $slashes_stripped ) ) { if( ! function_exists( "array_stripslashes" ) ) { function array_stripslashes(&$array) { if( is_array( $array ) ) while ( list( $key ) = each( $array ) ) if ( is_array( $array[$key] ) && $key != $array ) array_stripslashes( $array[$key] ); else $array[$key] = stripslashes( $array[$key] ); } } array_stripslashes($_POST); array_stripslashes($_GET); array_stripslashes($_COOKIES); $slashes_stripped = true; } ?>