diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-04-26 23:08:13 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-04-26 23:08:13 +0000 |
commit | a0190b50a51e357b6e8d830a73f8e29105b0ff7d (patch) | |
tree | 83f004956a834e2126d7fe07d40afaede4a897a5 /usr/local | |
parent | 97737adf898cfbffc5fe5e06f9d1a5185fa519d4 (diff) | |
download | pfsense-a0190b50a51e357b6e8d830a73f8e29105b0ff7d.zip pfsense-a0190b50a51e357b6e8d830a73f8e29105b0ff7d.tar.gz |
Make $myurl a global variable
This fixes Ticket #39
Diffstat (limited to 'usr/local')
-rwxr-xr-x | usr/local/www/wizard.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/wizard.php b/usr/local/www/wizard.php index 64cffa7..70346b7 100755 --- a/usr/local/www/wizard.php +++ b/usr/local/www/wizard.php @@ -389,7 +389,7 @@ if($pkg['step'][$stepid]['javascriptafterformdisplay'] <> "") { */ function fixup_string($string) { - global $config; + global $config, $myurl; // fixup #1: $myurl -> http[s]://ip_address:port/ $https = ""; $port = ""; |