Make WordPress Core

Ticket #12031: 12031.patch

File 12031.patch, 550 bytes (added by egill, 11 years ago)
  • wp-admin/setup-config.php

     
    6363// Add magic quotes and set up $_REQUEST ( $_GET + $_POST )
    6464wp_magic_quotes();
    6565
     66// Disable magic_quotes_sybase
     67@ini_set( 'magic_quotes_sybase',  0 );
     68
    6669// Support wp-config-sample.php one level up, for the develop repo.
    6770if ( file_exists( ABSPATH . 'wp-config-sample.php' ) )
    6871        $config_file = file( ABSPATH . 'wp-config-sample.php' );