Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ac05a43

Browse files
committedFeb 27, 2013
Fix #13054: Install: don't suppress errors when including libraries
1 parent d42e80c commit ac05a43

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎admin/install.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@
2828
$g_skip_open_db = true; # don't open the database in database_api.php
2929
define( 'MANTIS_INSTALLER', true );
3030
define( 'PLUGINS_DISABLED', true );
31-
@require_once( dirname( dirname( __FILE__ ) ) . DIRECTORY_SEPARATOR . 'core.php' );
32-
@require_once( 'install_functions.php' );
33-
@require_once( 'install_helper_functions.php' );
31+
require_once( dirname( dirname( __FILE__ ) ) . DIRECTORY_SEPARATOR . 'core.php' );
32+
require_once( 'install_functions.php' );
33+
require_once( 'install_helper_functions.php' );
3434
$g_error_send_page_header = false; # bypass page headers in error handler
3535

3636
$g_failed = false;

0 commit comments

Comments
 (0)
Please sign in to comment.