Prevents new contact_ids from being continuously created.

1). There must be at least a full_name.
2). Because of error validation that includes other required fields, too.
This commit is contained in:
Jonathan Rosenbaum
2015-02-11 05:22:18 +00:00
parent 7b64d0c494
commit 2869299725
3 changed files with 43 additions and 15 deletions
-1
View File
@@ -28,7 +28,6 @@ $Recordset1 = mysql_query($query_Recordset1, $YBDB) or die(mysql_error());
$row_Recordset1 = mysql_fetch_assoc($Recordset1);
$totalRows_Recordset1 = mysql_num_rows($Recordset1);
$editFormAction = $_SERVER['PHP_SELF'];
if (isset($_SERVER['QUERY_STRING'])) {
$editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
}