aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions.php
diff options
context:
space:
mode:
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
//