From d24bc7477f2cc9ee4aeac0e821550c52c99eab83 Mon Sep 17 00:00:00 2001 From: Helmut Hummel Date: Thu, 1 Nov 2012 00:31:14 +0100 Subject: [PATCH] [TASK] Disable TYPO3 Exception Handler for tests With that, the PHPUnit takes effect and warnings will be converted into an exception, making the tests fail. --- typo3conf/LocalConfiguration.php | 3 +- typo3conf/localconf.php | 53 -------------------------------- 2 files changed, 2 insertions(+), 54 deletions(-) delete mode 100644 typo3conf/localconf.php diff --git a/typo3conf/LocalConfiguration.php b/typo3conf/LocalConfiguration.php index 2286baf..45a7500 100644 --- a/typo3conf/LocalConfiguration.php +++ b/typo3conf/LocalConfiguration.php @@ -92,6 +92,7 @@ 'sitename' => 'New TYPO3 site', 'sqlDebug' => '1', 'UTF8filesystem' => '1', + 'debugExceptionHandler' => '', ), ); -?> \ No newline at end of file +?> diff --git a/typo3conf/localconf.php b/typo3conf/localconf.php deleted file mode 100644 index 45b0e34..0000000 --- a/typo3conf/localconf.php +++ /dev/null @@ -1,53 +0,0 @@ -=4.3, disable for production sites - - // Required for Fluidpages Extension -$TYPO3_CONF_VARS['FE']['addRootLineFields'] = 'backend_layout'; - -$TYPO3_CONF_VARS['FE']['lifetime'] = '604800'; -$TYPO3_CONF_VARS['FE']['logfile_dir'] = 'localsettings/logs/'; -$TYPO3_CONF_VARS['FE']['pageNotFound_handling'] = '/404/'; - -$TYPO3_CONF_VARS['GFX']['im_version_5'] = 'im6'; -$TYPO3_CONF_VARS['GFX']['TTFdpi'] = '96'; -$TYPO3_CONF_VARS['GFX']['jpg_quality'] = '80'; -$TYPO3_CONF_VARS['GFX']['thumbnails_png'] = '1'; -$TYPO3_CONF_VARS['GFX']['gblib_png'] = '1'; -$TYPO3_CONF_VARS['GFX']['im_path'] = '/usr/bin/'; -$TYPO3_CONF_VARS['GFX']['im_noScaleUp'] = '1'; - -$TYPO3_CONF_VARS['EXT']['extList'] = 'extbase,fluid,info,perm,func,filelist,about,tsconfig_help,context_help,extra_page_cm_options,impexp,sys_note,tstemplate,tstemplate_ceditor,tstemplate_info,tstemplate_objbrowser,tstemplate_analyzer,func_wizards,wizard_crpages,wizard_sortpages,lowlevel,install,belog,beuser,aboutmodules,setup,taskcenter,info_pagetsconfig,viewpage,rtehtmlarea,css_styled_content,t3skin,t3editor,reports,felogin,form,phpunit'; - -$GLOBALS['TYPO3_CONF_VARS']['SYS']['enable_DLOG'] = 0; - -## INSTALL SCRIPT EDIT POINT TOKEN - all lines after this points may be changed by the install script! -?> \ No newline at end of file