Make WordPress Core

Changeset 1964 for trunk/wp-settings.php


Ignore:
Timestamp:
12/16/2004 02:57:05 AM (20 years ago)
Author:
saxmatt
Message:

Comments refactoring and cleanup

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-settings.php

    r1955 r1964  
    102102define('TEMPLATEPATH', get_template_directory());
    103103
     104if ( !get_magic_quotes_gpc() ) {
     105    $_GET    = add_magic_quotes($_GET   );
     106    $_POST   = add_magic_quotes($_POST  );
     107    $_COOKIE = add_magic_quotes($_COOKIE);
     108    $_SERVER = add_magic_quotes($_SERVER);
     109}
     110
    104111function shutdown_action_hook() {
    105112    do_action('shutdown', '');
Note: See TracChangeset for help on using the changeset viewer.