diff options
Diffstat (limited to 'inc/pageutils.php')
-rw-r--r-- | inc/pageutils.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/pageutils.php b/inc/pageutils.php index c10272af3..65b140ea3 100644 --- a/inc/pageutils.php +++ b/inc/pageutils.php @@ -435,7 +435,7 @@ function resolve_pageid($ns,&$page,&$exists){ //keep hashlink if exists then clean both parts if (strpos($page,'#')) { - list($page,$hash) = split('#',$page,2); + list($page,$hash) = explode('#',$page,2); } else { $hash = ''; } |