summaryrefslogtreecommitdiff
path: root/inc/parserutils.php
diff options
context:
space:
mode:
Diffstat (limited to 'inc/parserutils.php')
-rw-r--r--inc/parserutils.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/inc/parserutils.php b/inc/parserutils.php
index 1bebfc698..70d73a417 100644
--- a/inc/parserutils.php
+++ b/inc/parserutils.php
@@ -499,13 +499,12 @@ function p_get_first_heading($id){
* @author Christopher Smith <chris@jalakai.co.uk>
*/
function p_xhtml_cached_geshi($code, $language) {
-
$cache = getCacheName($language.$code,".code");
if (@file_exists($cache)) {
$highlighted_code = io_readFile($cache, false);
- touch($cache);
+ @touch($cache);
} else {