From c49571c60c6c60b00e7792fcc9dc63527c04eb9d Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Sun, 30 May 2004 11:55:50 +0000 Subject: [PATCH] removed Samba 3 setting --- lam/tests/conf-test.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lam/tests/conf-test.php b/lam/tests/conf-test.php index 0fbff75f..b422e248 100644 --- a/lam/tests/conf-test.php +++ b/lam/tests/conf-test.php @@ -52,7 +52,6 @@ $maxlistentries = $conf->get_maxlistentries(); $defaultlanguage = $conf->get_defaultlanguage(); $scriptpath = $conf->get_scriptPath(); $scriptServer = $conf->get_scriptServer(); -$samba3 = $conf->get_samba3(); $pwdhash = $conf->get_pwdhash(); echo ("done
"); // next we modify them and save lam.conf @@ -78,7 +77,6 @@ $conf->set_maxlistentries("54"); $conf->set_defaultlanguage("de_AT:iso639_de:Deutsch (Oesterreich)"); $conf->set_scriptPath("/var/www/lam/lib/script"); $conf->set_scriptServer("127.0.0.1"); -$conf->set_samba3("yes"); $conf->set_pwdhash("SMD5"); $conf->save(); echo ("done
"); @@ -106,7 +104,6 @@ if ($conf2->get_maxlistentries() != "54") echo ("
Sav if ($conf2->get_defaultlanguage() != "de_AT:iso639_de:Deutsch (Oesterreich)") echo ("
Saving default language failed!
"); if ($conf2->get_scriptPath() != "/var/www/lam/lib/script") echo ("
Saving script path failed!
"); if ($conf2->get_scriptServer() != "127.0.0.1") echo ("
Saving script server failed!
"); -if ($conf2->get_samba3() != "yes") echo ("
Saving samba3 failed!
"); if ($conf2->get_pwdhash() != "SMD5") echo ("
Saving pwdhash failed!
"); echo ("done
"); // restore old values @@ -132,7 +129,6 @@ $conf2->set_maxlistentries($maxlistentries); $conf2->set_defaultLanguage($defaultlanguage); $conf2->set_scriptPath($scriptpath); $conf2->set_scriptServer($scriptserver); -$conf2->set_samba3($samba3); $conf2->set_pwdhash($pwdhash); $conf2->save(); echo ("done
");