diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2006-02-07 17:05:26 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2006-02-07 17:05:26 +0000 |
commit | c88c9381fe7ebd8663c5b9d629b54205d3b62829 (patch) | |
tree | 96ddb9f963d545bca90cc2e665637b1b6175af54 /packages | |
parent | a2320b88228f226dcfec9cd25e4b77210c0d985f (diff) | |
download | pfsense-packages-c88c9381fe7ebd8663c5b9d629b54205d3b62829.tar.gz pfsense-packages-c88c9381fe7ebd8663c5b9d629b54205d3b62829.tar.bz2 pfsense-packages-c88c9381fe7ebd8663c5b9d629b54205d3b62829.zip |
* Add missing <?php ?>
* Correct the XML header row
Diffstat (limited to 'packages')
-rw-r--r-- | packages/squid_auth.inc | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/packages/squid_auth.inc b/packages/squid_auth.inc index 80583a33..fd0384f0 100644 --- a/packages/squid_auth.inc +++ b/packages/squid_auth.inc @@ -1,3 +1,4 @@ +<?php /* $Id$ */ /* @@ -78,8 +79,7 @@ function dynamic_no_auth() { conf_mount_rw(); $fout = fopen("/usr/local/pkg/squid_extauth.xml", "w"); - - fwrite($fout, '<?xml version="1.0" encoding="utf-8" ?>\n'); + fwrite($fout, "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n"); fwrite($fout, "<packagegui>\n"); fwrite($fout, " <name>squidextnoauth</name>\n"); fwrite($fout, " <title>Services: Proxy Server -> Extended Authentication Settings</title>\n"); @@ -154,7 +154,7 @@ function dynamic_local_auth() { $fout = fopen("/usr/local/pkg/squid_extauth.xml", "w"); - fwrite($fout, '<?xml version="1.0" encoding="utf-8" ?>\n'); + fwrite($fout, "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n"); fwrite($fout, "\n"); fwrite($fout, "<packagegui>\n"); fwrite($fout, " <name>squidextlocalauth</name>\n"); @@ -279,7 +279,7 @@ function dynamic_ldap_auth() { $fout = fopen("/usr/local/pkg/squid_extauth.xml", "w"); - fwrite($fout, '<?xml version="1.0" encoding="utf-8" ?>\n'); + fwrite($fout, "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n"); fwrite($fout, "\n"); fwrite($fout, "<packagegui>\n"); fwrite($fout, " <name>squidextldapauth</name>\n"); @@ -444,4 +444,5 @@ function dynamic_auth_content($pkgvar) { break; } -} /* end function dynamic_auth_content */
\ No newline at end of file +} /* end function dynamic_auth_content */ +?>
\ No newline at end of file |