diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2006-07-02 00:29:53 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2006-07-02 00:29:53 +0000 |
commit | ea35697228ad61ecc21444c7a88e3539bad2f770 (patch) | |
tree | 90c40747a7076c0924df00ea882f85acff258a08 /usr | |
parent | 85c4a20c1966769b980b43c8ee6f19217ecde8b0 (diff) | |
download | pfsense-ea35697228ad61ecc21444c7a88e3539bad2f770.zip pfsense-ea35697228ad61ecc21444c7a88e3539bad2f770.tar.gz |
Add gettext() function
Diffstat (limited to 'usr')
-rwxr-xr-x | usr/local/www/firewall_shaper_queues_edit.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/usr/local/www/firewall_shaper_queues_edit.php b/usr/local/www/firewall_shaper_queues_edit.php index b5fca15..0254566 100755 --- a/usr/local/www/firewall_shaper_queues_edit.php +++ b/usr/local/www/firewall_shaper_queues_edit.php @@ -35,6 +35,10 @@ require("guiconfig.inc"); $a_queues = &$config['shaper']['queue']; +function gettext($text) { + return $text; +} + /* redirect to wizard if shaper isn't already configured */ if(isset($config['shaper']['enable'])) { $pconfig['enable'] = TRUE; |