stop writing env to /tmp/env

pull/2077/head
Isaac Connor 2017-11-24 15:38:07 -05:00
parent 4b92a788f7
commit c0e49b65ef
1 changed files with 2 additions and 2 deletions

View File

@ -34,14 +34,14 @@ if ( version_compare( phpversion(), '4.1.0', '<') ) {
}
// Useful debugging lines for mobile devices
//if ( true ) {
if ( false ) {
ob_start();
phpinfo( INFO_VARIABLES );
$fp = fopen( '/tmp/env.html', 'w' );
fwrite( $fp, ob_get_contents() );
fclose( $fp );
ob_end_clean();
//}
}
require_once( 'includes/config.php' );
require_once( 'includes/logger.php' );