diff options
author | Christopher Smith <chris@jalakai.co.uk> | 2014-03-05 22:01:20 +0000 |
---|---|---|
committer | Christopher Smith <chris@jalakai.co.uk> | 2014-03-05 22:01:20 +0000 |
commit | 6d2af55dde922ac10a288b4195b1bf338e7bc5a9 (patch) | |
tree | f0bb51ad44608872afa3a9ab26acbff3629c9d90 /inc/common.php | |
parent | 0e80bb5e347ff00c6f81627d8e39dafaaa923bc5 (diff) | |
download | rpg-6d2af55dde922ac10a288b4195b1bf338e7bc5a9.tar.gz rpg-6d2af55dde922ac10a288b4195b1bf338e7bc5a9.tar.bz2 |
suppress errors where list() may not fill all vars
Diffstat (limited to 'inc/common.php')
-rw-r--r-- | inc/common.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/inc/common.php b/inc/common.php index 36bd32c4f..6aad42bd1 100644 --- a/inc/common.php +++ b/inc/common.php @@ -773,7 +773,7 @@ function checklock($id) { } //my own lock - list($ip, $session) = explode("\n", io_readFile($lock)); + @list($ip, $session) = explode("\n", io_readFile($lock)); if($ip == $_SERVER['REMOTE_USER'] || $ip == clientIP() || $session == session_id()) { return false; } @@ -811,7 +811,7 @@ function lock($id) { function unlock($id) { $lock = wikiLockFN($id); if(@file_exists($lock)) { - list($ip, $session) = explode("\n", io_readFile($lock)); + @list($ip, $session) = explode("\n", io_readFile($lock)); if($ip == $_SERVER['REMOTE_USER'] || $ip == clientIP() || $session == session_id()) { @unlink($lock); return true; @@ -1536,7 +1536,7 @@ function send_redirect($url) { // work around IE bug // http://www.ianhoar.com/2008/11/16/internet-explorer-6-and-redirected-anchor-links/ - list($url, $hash) = explode('#', $url); + @list($url, $hash) = explode('#', $url); if($hash) { if(strpos($url, '?')) { $url = $url.'&#'.$hash; |