diff --git a/net/pfSense-pkg-haproxy-devel/Makefile b/net/pfSense-pkg-haproxy-devel/Makefile index 3f0b8e9cedcf..4f25fea8b4d4 100644 --- a/net/pfSense-pkg-haproxy-devel/Makefile +++ b/net/pfSense-pkg-haproxy-devel/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= pfSense-pkg-haproxy-devel -PORTVERSION= 0.46 +PORTVERSION= 0.47 CATEGORIES= net MASTER_SITES= # empty DISTFILES= # empty diff --git a/net/pfSense-pkg-haproxy-devel/files/usr/local/pkg/haproxy/pkg_haproxy_tabs.inc b/net/pfSense-pkg-haproxy-devel/files/usr/local/pkg/haproxy/pkg_haproxy_tabs.inc index a74ee20abc72..b7aff0a629c3 100644 --- a/net/pfSense-pkg-haproxy-devel/files/usr/local/pkg/haproxy/pkg_haproxy_tabs.inc +++ b/net/pfSense-pkg-haproxy-devel/files/usr/local/pkg/haproxy/pkg_haproxy_tabs.inc @@ -9,13 +9,13 @@ global $haproxy_tab_array; $haproxy_tab_array['haproxy'] = array(); -$haproxy_tab_array['haproxy']['settings'] = Array(name => "Settings", url => "haproxy_global.php"); -$haproxy_tab_array['haproxy']['frontend'] = Array(name => "Frontend", url => "haproxy_listeners.php"); -$haproxy_tab_array['haproxy']['backend'] = Array(name => "Backend", url => "haproxy_pools.php"); -$haproxy_tab_array['haproxy']['files'] = Array(name => "Files", url => "haproxy_files.php"); -$haproxy_tab_array['haproxy']['stats'] = Array(name => "Stats", url => "haproxy_stats.php"); -$haproxy_tab_array['haproxy']['statsfs'] = Array(name => "Stats FS", url => "haproxy_stats.php?haproxystats=1"); -$haproxy_tab_array['haproxy']['templates'] = Array(name => "Templates", url => "haproxy_templates.php"); +$haproxy_tab_array['haproxy']['settings'] = Array(name => "Settings", url => "/haproxy/haproxy_global.php"); +$haproxy_tab_array['haproxy']['frontend'] = Array(name => "Frontend", url => "/haproxy/haproxy_listeners.php"); +$haproxy_tab_array['haproxy']['backend'] = Array(name => "Backend", url => "/haproxy/haproxy_pools.php"); +$haproxy_tab_array['haproxy']['files'] = Array(name => "Files", url => "/haproxy/haproxy_files.php"); +$haproxy_tab_array['haproxy']['stats'] = Array(name => "Stats", url => "/haproxy/haproxy_stats.php"); +$haproxy_tab_array['haproxy']['statsfs'] = Array(name => "Stats FS", url => "/haproxy/haproxy_stats.php?haproxystats=1"); +$haproxy_tab_array['haproxy']['templates'] = Array(name => "Templates", url => "/haproxy/haproxy_templates.php"); function haproxy_display_top_tabs_active($top_tabs, $activetab) { $tab_array = array(); @@ -23,6 +23,4 @@ function haproxy_display_top_tabs_active($top_tabs, $activetab) { $tab_array[] = array($tab_item['name'], $key == $activetab, $tab_item['url']); } display_top_tabs($tab_array); -} - -?> +} \ No newline at end of file diff --git a/net/pfSense-pkg-haproxy/Makefile b/net/pfSense-pkg-haproxy/Makefile index 6516e088b715..c8b3ed63a92a 100644 --- a/net/pfSense-pkg-haproxy/Makefile +++ b/net/pfSense-pkg-haproxy/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= pfSense-pkg-haproxy -PORTVERSION= 0.46 +PORTVERSION= 0.47 CATEGORIES= net MASTER_SITES= # empty DISTFILES= # empty diff --git a/net/pfSense-pkg-haproxy/files/usr/local/pkg/haproxy/pkg_haproxy_tabs.inc b/net/pfSense-pkg-haproxy/files/usr/local/pkg/haproxy/pkg_haproxy_tabs.inc index a74ee20abc72..b7aff0a629c3 100644 --- a/net/pfSense-pkg-haproxy/files/usr/local/pkg/haproxy/pkg_haproxy_tabs.inc +++ b/net/pfSense-pkg-haproxy/files/usr/local/pkg/haproxy/pkg_haproxy_tabs.inc @@ -9,13 +9,13 @@ global $haproxy_tab_array; $haproxy_tab_array['haproxy'] = array(); -$haproxy_tab_array['haproxy']['settings'] = Array(name => "Settings", url => "haproxy_global.php"); -$haproxy_tab_array['haproxy']['frontend'] = Array(name => "Frontend", url => "haproxy_listeners.php"); -$haproxy_tab_array['haproxy']['backend'] = Array(name => "Backend", url => "haproxy_pools.php"); -$haproxy_tab_array['haproxy']['files'] = Array(name => "Files", url => "haproxy_files.php"); -$haproxy_tab_array['haproxy']['stats'] = Array(name => "Stats", url => "haproxy_stats.php"); -$haproxy_tab_array['haproxy']['statsfs'] = Array(name => "Stats FS", url => "haproxy_stats.php?haproxystats=1"); -$haproxy_tab_array['haproxy']['templates'] = Array(name => "Templates", url => "haproxy_templates.php"); +$haproxy_tab_array['haproxy']['settings'] = Array(name => "Settings", url => "/haproxy/haproxy_global.php"); +$haproxy_tab_array['haproxy']['frontend'] = Array(name => "Frontend", url => "/haproxy/haproxy_listeners.php"); +$haproxy_tab_array['haproxy']['backend'] = Array(name => "Backend", url => "/haproxy/haproxy_pools.php"); +$haproxy_tab_array['haproxy']['files'] = Array(name => "Files", url => "/haproxy/haproxy_files.php"); +$haproxy_tab_array['haproxy']['stats'] = Array(name => "Stats", url => "/haproxy/haproxy_stats.php"); +$haproxy_tab_array['haproxy']['statsfs'] = Array(name => "Stats FS", url => "/haproxy/haproxy_stats.php?haproxystats=1"); +$haproxy_tab_array['haproxy']['templates'] = Array(name => "Templates", url => "/haproxy/haproxy_templates.php"); function haproxy_display_top_tabs_active($top_tabs, $activetab) { $tab_array = array(); @@ -23,6 +23,4 @@ function haproxy_display_top_tabs_active($top_tabs, $activetab) { $tab_array[] = array($tab_item['name'], $key == $activetab, $tab_item['url']); } display_top_tabs($tab_array); -} - -?> +} \ No newline at end of file