diff options
author | jim-p <jim@pingle.org> | 2010-05-10 15:02:38 -0400 |
---|---|---|
committer | jim-p <jim@pingle.org> | 2010-05-10 15:06:19 -0400 |
commit | 2c7bc9d0442817229e67ccafca155276fab384a4 (patch) | |
tree | a97ddfc1a067b78d0204541512bd06c6bb855d3f | |
parent | 38564fde256e83e26f1f65d28ff064e835206ec9 (diff) | |
download | pfsense-2c7bc9d0442817229e67ccafca155276fab384a4.zip pfsense-2c7bc9d0442817229e67ccafca155276fab384a4.tar.gz |
Fix package URLs that use $myurl. Resolves #584
-rwxr-xr-x | usr/local/www/fbegin.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/fbegin.inc b/usr/local/www/fbegin.inc index 29b9464..9dda6cc 100755 --- a/usr/local/www/fbegin.inc +++ b/usr/local/www/fbegin.inc @@ -60,7 +60,7 @@ function return_ext_menu($section) { } else { $myurl = $addresswithport; } - $description = str_replace('\$myurl', $myurl, $menuitem['url']); + $description = str_replace('$myurl', $myurl, $menuitem['url']); } else { $description = '/pkg.php?xml=' . $menuitem['configfile']; } |