thomascube
2008-09-06 7f22f297acb9de8a9b1bc0d22d1e9a07cb6177e6
program/include/rcube_template.php
@@ -39,6 +39,7 @@
    var $js_commands = array();
    var $object_handlers = array();
    public $type = 'html';
    public $ajax_call = false;
    /**
@@ -302,17 +303,13 @@
        $path = "$skin_path/templates/$name.html";
        // read template file
   if (($templ = file_get_contents($path)) === false) {
            ob_start();
            file_get_contents($path);
            $message = ob_get_contents();
            ob_end_clean();
        if (($templ = @file_get_contents($path)) === false) {
            raise_error(array(
                'code' => 501,
                'type' => 'php',
                'line' => __LINE__,
                'file' => __FILE__,
                'message' => 'Error loading template for '.$name.': '.$message
                'message' => 'Error loading template for '.$name
                ), true, true);
            return false;
        }