summaryrefslogtreecommitdiff
path: root/inc/template.php
diff options
context:
space:
mode:
authorBen Coburn <btcoburn@silicodon.net>2006-09-08 21:34:33 +0200
committerBen Coburn <btcoburn@silicodon.net>2006-09-08 21:34:33 +0200
commitd818621633e2c687264682f0504869858f9c780d (patch)
tree47988890038f1229b3040a7deefaf523e075b367 /inc/template.php
parent4b5f4f4ed319790fe7f0729560616b55c4e64715 (diff)
downloadrpg-d818621633e2c687264682f0504869858f9c780d.tar.gz
rpg-d818621633e2c687264682f0504869858f9c780d.tar.bz2
suppress boring errors
Suppress any errors from set_time_limit, unlink, and file_exists functions. see: http://www.freelists.org/archives/dokuwiki/09-2006/msg00004.html darcs-hash:20060908193433-05dcb-013617431870ab5bfb2ce8c6e99ba5af13493228.gz
Diffstat (limited to 'inc/template.php')
-rw-r--r--inc/template.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/template.php b/inc/template.php
index 81913a8e7..7392b5413 100644
--- a/inc/template.php
+++ b/inc/template.php
@@ -635,7 +635,7 @@ function tpl_youarehere($sep=' &raquo; '){
$page = $part.$parts[$i];
if($page == $conf['start']) return;
echo $sep;
- if(file_exists(wikiFN($page))){
+ if(@file_exists(wikiFN($page))){
$title = p_get_first_heading($page);
if(!$title) $title = $parts[$i];
tpl_link(wl($page),$title,'title="'.$page.'"');