summaryrefslogtreecommitdiff
path: root/inc/pageutils.php
diff options
context:
space:
mode:
authorTom N Harris <tnharris@whoopdedo.org>2009-05-28 23:54:38 +0200
committerTom N Harris <tnharris@whoopdedo.org>2009-05-28 23:54:38 +0200
commit4b7f9e7005c4562f8b4b554ea5ea53fb1ebf804a (patch)
tree11fd280d8bd90a9c6aa58e2f2e4c0f2e0e4adef0 /inc/pageutils.php
parent4917a83a8d49fae8bcb51077f92f39bc839119c7 (diff)
downloadrpg-4b7f9e7005c4562f8b4b554ea5ea53fb1ebf804a.tar.gz
rpg-4b7f9e7005c4562f8b4b554ea5ea53fb1ebf804a.tar.bz2
Change expensive uses of split to the much faster explode.
darcs-hash:20090528215438-6942e-bf1b875e689ade6bd1a17e3d812ce16bf35c84a6.gz
Diffstat (limited to 'inc/pageutils.php')
-rw-r--r--inc/pageutils.php2
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 = '';
}