Skip to content

Commit

Permalink
Fix #13054: Install: don't suppress errors when including libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
dregad committed Feb 27, 2013
1 parent d42e80c commit ac05a43
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions admin/install.php
Expand Up @@ -28,9 +28,9 @@
$g_skip_open_db = true; # don't open the database in database_api.php
define( 'MANTIS_INSTALLER', true );
define( 'PLUGINS_DISABLED', true );
@require_once( dirname( dirname( __FILE__ ) ) . DIRECTORY_SEPARATOR . 'core.php' );
@require_once( 'install_functions.php' );
@require_once( 'install_helper_functions.php' );
require_once( dirname( dirname( __FILE__ ) ) . DIRECTORY_SEPARATOR . 'core.php' );
require_once( 'install_functions.php' );
require_once( 'install_helper_functions.php' );
$g_error_send_page_header = false; # bypass page headers in error handler

$g_failed = false;
Expand Down

0 comments on commit ac05a43

Please sign in to comment.