Fixed 0000036,0000039 and some smaller bugs.
[fa-stable.git] / admin / create_coy.php
index a7cae00ce4cc3ec19a1587e5acc9b3b05eea1d35..b40b41d772501239f63b4bd3f56c5b1ab14c7663 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-$page_security = 15;
+$page_security = 20;
 $path_to_root="..";
 include_once($path_to_root . "/includes/session.inc");
 
@@ -29,13 +29,14 @@ else
 
 function check_data()
 {
-       global $db_connections, $tb_pref_counter;
+       global $db_connections, $tb_pref_counter, $selected_id;
 
        if ($_POST['name'] == "" || $_POST['host'] == "" || $_POST['dbuser'] == "" || $_POST['dbname'] == "")
                return false;
        foreach($db_connections as $id=>$con)
        {
-               if ($_POST['host'] == $con['host'] && $_POST['dbname'] == $con['dbname'])
+        if($id != $selected_id && $_POST['host'] == $con['host'] 
+               && $_POST['dbname'] == $con['dbname'])
                {
                        if ($_POST['tbpref'] == $con['tbpref'])
                        {
@@ -232,8 +233,8 @@ function display_companies()
                label_cell($conn[$i]['tbpref']);
                label_cell($what);
                label_cell("<a href=" . $_SERVER['PHP_SELF']. "?selected_id=" . $i . ">" . _("Edit") . "</a>");
-               if ($i != $coyno)
-                       label_cell("<a href='javascript:deleteCompany(" . $i . ")'>" . _("Delete") . "</a>");
+               label_cell( $i == $coyno ? '' :
+       "<a href='javascript:deleteCompany(" . $i . ")'>" . _("Delete") . "</a>");
                end_row();
        }