aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2001-05-20 20:58:55 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2001-05-20 20:58:55 +0000
commit84925d852d34ac9c6fcc2c3c5e749b8bd70bc22d (patch)
tree0e279dba5f43bfe18e537ad52224909ea44966c4 /phpBB/includes/functions.php
parentfdf043fa2b472ade502fc2228f3592377636ad45 (diff)
downloadforums-84925d852d34ac9c6fcc2c3c5e749b8bd70bc22d.tar
forums-84925d852d34ac9c6fcc2c3c5e749b8bd70bc22d.tar.gz
forums-84925d852d34ac9c6fcc2c3c5e749b8bd70bc22d.tar.bz2
forums-84925d852d34ac9c6fcc2c3c5e749b8bd70bc22d.tar.xz
forums-84925d852d34ac9c6fcc2c3c5e749b8bd70bc22d.zip
Moved the append_sid routine to the sessions.php file
git-svn-id: file:///svn/phpbb/trunk@317 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r--phpBB/includes/functions.php19
1 files changed, 0 insertions, 19 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php
index 7777bc3a6f..9106c2c5ec 100644
--- a/phpBB/includes/functions.php
+++ b/phpBB/includes/functions.php
@@ -272,25 +272,6 @@ function create_date($format, $gmepoch, $tz)
}
//
-// Append $SID to a url
-// Borrowed from phplib
-// and modified
-//
-function append_sid($url)
-{
- global $SID;
-
- if(!empty($SID) && !eregi("^http:", $url) && !eregi("sid=", $url))
- {
- $url = ereg_replace("[&?]+$", "", $url);
- $url .= ( (strpos($url, "?") != false) ? "&" : "?" ) . $SID;
- }
-
- return($url);
-
-}
-
-//
// Pagination routine, generates
// page number sequence
//