thomascube
2011-01-04 965ed0ca7f5e07dc6d7d7e08ad8215b7c1c63b83
Silently ignore unknown classes in rcube_autoload (#1487109)

2 files modified
10 ■■■■■ changed files
CHANGELOG 1 ●●●● patch | view | raw | blame | history
program/include/iniset.php 9 ●●●● patch | view | raw | blame | history
CHANGELOG
@@ -1,6 +1,7 @@
CHANGELOG Roundcube Webmail
===========================
- Make rcube_autoload silently skip unknown classes (#1487109)
- Fix charset detection in vcards with encoded values (#1485542)
- Better CSS cursors for splitters (#1486874)
- Show the same message only once (#1487641)
program/include/iniset.php
@@ -105,7 +105,14 @@
        ),
        $classname
    );
    include $filename. '.php';
    if ($fp = @fopen("$filename.php", 'r', true)) {
        fclose($fp);
        include_once("$filename.php");
        return true;
    }
    return false;
}
spl_autoload_register('rcube_autoload');