Bugfix: Werte dürfen nicht auf "" stehen, wenn kein maybe_null mehr benutzt wird
Bernd Wurst

Bernd Wurst commited on 2014-02-03 17:24:57
Zeige 2 geänderte Dateien mit 3 Einfügungen und 4 Löschungen.

... ...
@@ -63,12 +63,12 @@ if ($_GET['action'] == 'edit')
63 63
       $docroot = $vhost['homedir'].'/websites/'.$_POST['docroot'];
64 64
     }
65 65
     if ((isset($_POST['use_default_docroot']) && $_POST['use_default_docroot'] == '1') || ($docroot == $defaultdocroot)) {
66
-      $docroot = '';
66
+      $docroot = NULL;
67 67
     }
68 68
   
69 69
     DEBUG("Document-Root: ".$docroot);
70 70
   }
71
-  $php = '';
71
+  $php = NULL;
72 72
   if ($_POST['vhost_type'] == 'regular' && isset($_POST['php']))
73 73
   {
74 74
     switch ($_POST['php']) {
... ...
@@ -125,7 +125,7 @@ if ($_GET['action'] == 'edit')
125 125
   }
126 126
 
127 127
   
128
-  $ssl = '';
128
+  $ssl = NULL;
129 129
   switch ($_POST['ssl']) {
130 130
     case 'http':
131 131
       $ssl = 'http';
... ...
@@ -32,7 +32,6 @@ define('ROLE_SUBUSER', 32);
32 32
 
33 33
 function find_role($login, $password, $i_am_admin = False)
34 34
 {
35
-  $login = db_escape_string($login);
36 35
   // Domain-Admin?  <not implemented>
37 36
   // System-User?
38 37
   $uid = (int) $login;
39 38