thomascube
2008-05-19 c1b3c4cc3168d41b97256bcc3d8dd70d2a404788
program/steps/addressbook/save.inc
@@ -28,7 +28,7 @@
}
// check input
if ((!get_input_value('_name', RCUBE_INPUT_POST) || !get_input_value('_email', RCUBE_INPUT_POST)) && $OUTPUT->action)
if ((!get_input_value('_name', RCUBE_INPUT_POST) || !get_input_value('_email', RCUBE_INPUT_POST)))
{
  $OUTPUT->show_message('formincomplete', 'warning');
  rcmail_overwrite_action(empty($_POST['_cid']) ? 'add' : 'show');
@@ -54,8 +54,6 @@
{
  if ($CONTACTS->update($cid, $a_record))
  {
    if ($OUTPUT->action)
    {
      // define list of cols to be displayed
      $a_js_cols = array();
      $record = $CONTACTS->get_record($cid, true);
@@ -65,7 +63,6 @@
      // update the changed col in list
      $OUTPUT->command('parent.update_contact_row', $cid, $a_js_cols);
    }
      
    // show confirmation
    $OUTPUT->show_message('successfullysaved', 'confirmation');    
@@ -96,8 +93,6 @@
  // insert record and send response
  if ($insert_id = $CONTACTS->insert($a_record))
  {
    if ($OUTPUT->action)
    {
      // add contact row or jump to the page where it should appear
      $CONTACTS->reset();
      $result = $CONTACTS->search($CONTACTS->primary_key, $insert_id);
@@ -108,7 +103,6 @@
      // update record count display
      $CONTACTS->reset();
      $OUTPUT->command('parent.set_rowcount', rcmail_get_rowcount_text());
    }
    // show confirmation
    $OUTPUT->show_message('successfullysaved', 'confirmation');