From f5208bf25829200c3d5d2833607cb2077f4d8bbb Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Sun, 6 Feb 2011 14:40:35 -0500 Subject: If product name == pfSense show a link to redmine / bug database --- usr/local/www/fbegin.inc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'usr/local/www/fbegin.inc') diff --git a/usr/local/www/fbegin.inc b/usr/local/www/fbegin.inc index 6efb7a6..734b9a2 100755 --- a/usr/local/www/fbegin.inc +++ b/usr/local/www/fbegin.inc @@ -212,6 +212,8 @@ $diagnostics_menu = msort(array_merge($diagnostics_menu, return_ext_menu("Diagno if(! $g['disablehelpmenu']) { $help_menu = array(); $help_menu[] = array("About this Page", $helpurl); + if($g['product_name'] == "pfSense") + $help_menu[] = array("Bug Database", "http://rcs.pfsense.org/j.php?jumpto=redmine"); $help_menu[] = array("User Forum", "http://www.pfsense.org/j.php?jumpto=forum"); $help_menu[] = array("Documentation", "http://www.pfsense.org/j.php?jumpto=doc"); $help_menu[] = array("Developers Wiki", "http://www.pfsense.org/j.php?jumpto=devwiki"); @@ -431,4 +433,4 @@ if(is_subsystem_dirty('packagelock')) { print_info_box(gettext("Packages are currently being reinstalled in the background.

Do not make changes in the GUI until this is complete.") . "

"); } $pgtitle_output = true; -?> +?> \ No newline at end of file -- cgit v1.1 From 998930abd0f319cd662146f8073eb5909575150a Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Sun, 6 Feb 2011 14:44:10 -0500 Subject: fix url for jumpto --- usr/local/www/fbegin.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'usr/local/www/fbegin.inc') diff --git a/usr/local/www/fbegin.inc b/usr/local/www/fbegin.inc index 734b9a2..8f94164 100755 --- a/usr/local/www/fbegin.inc +++ b/usr/local/www/fbegin.inc @@ -213,7 +213,7 @@ if(! $g['disablehelpmenu']) { $help_menu = array(); $help_menu[] = array("About this Page", $helpurl); if($g['product_name'] == "pfSense") - $help_menu[] = array("Bug Database", "http://rcs.pfsense.org/j.php?jumpto=redmine"); + $help_menu[] = array("Bug Database", "http://www.pfsense.org/j.php?jumpto=redmine"); $help_menu[] = array("User Forum", "http://www.pfsense.org/j.php?jumpto=forum"); $help_menu[] = array("Documentation", "http://www.pfsense.org/j.php?jumpto=doc"); $help_menu[] = array("Developers Wiki", "http://www.pfsense.org/j.php?jumpto=devwiki"); -- cgit v1.1