From f8bd476b882e95b8bdb589ae74645d030ef198fd Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 3 Jan 2013 15:52:05 -0800 Subject: import the toggle_mobile stuff to shut up some warnings --- boot.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'boot.php') diff --git a/boot.php b/boot.php index d86b48436..fc93879e7 100644 --- a/boot.php +++ b/boot.php @@ -1924,3 +1924,19 @@ function dba_timer() { return microtime(true); } +/** +* Returns the complete URL of the current page, e.g.: http(s)://something.com/network +* +* Taken from http://webcheatsheet.com/php/get_current_page_url.php +*/ +function curPageURL() { + $pageURL = 'http'; + if ($_SERVER["HTTPS"] == "on") {$pageURL .= "s";} + $pageURL .= "://"; + if ($_SERVER["SERVER_PORT"] != "80" && $_SERVER["SERVER_PORT"] != "443") { + $pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"]; + } else { + $pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"]; + } + return $pageURL; +} -- cgit v1.2.3