// Add the new member information record
case 'addNew':
- // Check for new cities being submitted
- $this->checkNewCities();
-
- // Update submitted categories
- $this->updateCategories();
-
// Insert the new member info into the database
$this->memberName = $this->memberData['name'];
$this->memberInfo = $this->insertEntry();
;";
$this->wpdb->query($sql);
+ // Check for new cities being submitted
+ $this->checkNewCities();
+
+ // Update submitted categories
+ $this->updateCategories();
+
$this->memberInfo = $this->editEntry($this->memberInfoID);
+
}
+
break;
// Clone the member information record.