aboutsummaryrefslogtreecommitdiffstats
path: root/config/squid3/old/squid.xml
diff options
context:
space:
mode:
authorRenato Botelho <garga@FreeBSD.org>2014-06-20 16:09:43 -0300
committerRenato Botelho <garga@FreeBSD.org>2014-06-20 16:09:43 -0300
commit3b36926e21cc782d49780f3d447803334a8d9c9b (patch)
tree448247939253eccce532f0b29b95d4ae16f7fe39 /config/squid3/old/squid.xml
parent695190dc823e44c3c86804f4e291b1585125dd0b (diff)
downloadpfsense-packages-3b36926e21cc782d49780f3d447803334a8d9c9b.tar.gz
pfsense-packages-3b36926e21cc782d49780f3d447803334a8d9c9b.tar.bz2
pfsense-packages-3b36926e21cc782d49780f3d447803334a8d9c9b.zip
Fix call-time pass by reference for all squid packages
Diffstat (limited to 'config/squid3/old/squid.xml')
-rw-r--r--config/squid3/old/squid.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/config/squid3/old/squid.xml b/config/squid3/old/squid.xml
index 5762efb1..83fb9bc0 100644
--- a/config/squid3/old/squid.xml
+++ b/config/squid3/old/squid.xml
@@ -315,13 +315,13 @@
</field>
</fields>
<custom_php_command_before_form>
- squid_before_form_general(&amp;$pkg);
+ squid_before_form_general($pkg);
</custom_php_command_before_form>
<custom_add_php_command>
squid_resync();
</custom_add_php_command>
<custom_php_validation_command>
- squid_validate_general($_POST, &amp;$input_errors);
+ squid_validate_general($_POST, $input_errors);
</custom_php_validation_command>
<custom_php_resync_config_command>
squid_resync();
@@ -339,4 +339,4 @@
exec("/bin/rm -f /usr/local/etc/rc.d/squid*");
</custom_php_deinstall_command>
<filter_rules_needed>squid_generate_rules</filter_rules_needed>
-</packagegui> \ No newline at end of file
+</packagegui>