summaryrefslogtreecommitdiff
path: root/roundcubemail/program
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-05-20 10:41:59 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-05-20 10:41:59 +0000
commit36077f1171371c85657d646c7fc34485ff0a5ce0 (patch)
tree6affc9200fb7ded5f3824e9f707cd43c96525022 /roundcubemail/program
parent3da7f008e71a06d0f3f6058597c4275c32df8bac (diff)
- remove html2text hack from autoloader (don't need it anymore)
git-svn-id: https://svn.roundcube.net/trunk@3643 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program')
-rwxr-xr-xroundcubemail/program/include/iniset.php6
1 files changed, 2 insertions, 4 deletions
diff --git a/roundcubemail/program/include/iniset.php b/roundcubemail/program/include/iniset.php
index 3887fa5f3..6cbd55274 100755
--- a/roundcubemail/program/include/iniset.php
+++ b/roundcubemail/program/include/iniset.php
@@ -62,7 +62,7 @@ $include_path.= INSTALL_PATH . 'program/include' . PATH_SEPARATOR;
$include_path.= ini_get('include_path');
if (set_include_path($include_path) === false) {
- die('Fatal error: ini_set/set_include_path does not work.');
+ die("Fatal error: ini_set/set_include_path does not work.");
}
ini_set('error_reporting', E_ALL&~E_NOTICE);
@@ -74,7 +74,7 @@ ini_set('error_reporting', E_ALL&~E_NOTICE);
// set internal encoding for mbstring extension
if(extension_loaded('mbstring'))
mb_internal_encoding(RCMAIL_CHARSET);
-
+
/**
* Use PHP5 autoload for dynamic class loading
@@ -91,7 +91,6 @@ function rcube_autoload($classname)
'/Net_(.+)/',
'/^html_.+/',
'/^utf8$/',
- '/html2text/'
),
array(
'MDB2/\\1',
@@ -99,7 +98,6 @@ function rcube_autoload($classname)
'Net/\\1',
'html',
'utf8.class',
- 'lib/html2text' // see #1485505
),
$classname
);