Index: sites/all/modules/ad/ad.admin.inc
===================================================================
--- sites/all/modules/ad/ad.admin.inc	(revision 140)
+++ sites/all/modules/ad/ad.admin.inc	(working copy)
@@ -52,6 +52,7 @@
     $form['group'][$ad->aid] = array('#value' => _ad_get_group($ad->aid));
     $form['adtype'][$ad->aid] = array('#value' => t(check_plain($ad->adtype)));
     $form['adstatus'][$ad->aid] = array('#value' => t(check_plain($ad->adstatus)));
+    $form['autoexpire'][$ad->aid] = array('#value' => $ad->autoexpire ? format_date($ad->autoexpire, 'small') : t('never'));
     $form['operations'][$ad->aid] = array('#value' => l(t('edit'), 'node/'. $ad->aid .'/edit', array('query' => $destination)));
   }
   $form['ads'] = array('#type' => 'checkboxes', '#options' => $ads);
@@ -170,7 +171,7 @@
  */
 function theme_ad_admin_ads($form) {
   // Overview table:
-  $header = array(theme('table_select_header_cell'), t('Title'), t('Group'), t('Type'), t('Status'), t('Operations'));
+  $header = array(theme('table_select_header_cell'), t('Title'), t('Group'), t('Type'), t('Status'), t('Expiration'), t('Operations'));
 
   $output = drupal_render($form['options']);
   if (isset($form['title']) && is_array($form['title'])) {
@@ -181,6 +182,7 @@
       $row[] = drupal_render($form['group'][$key]);
       $row[] = drupal_render($form['adtype'][$key]);
       $row[] = drupal_render($form['adstatus'][$key]);
+      $row[] = drupal_render($form['autoexpire'][$key]);
       $row[] = drupal_render($form['operations'][$key]);
       $rows[] = $row;
     }
 
Index: sites/all/modules/ad/channel/ad_channel.module
===================================================================
--- sites/all/modules/ad/channel/ad_channel.module	(revision 383)
+++ sites/all/modules/ad/channel/ad_channel.module	(working copy)
@@ -346,6 +346,7 @@
 
   $header[] = t('Type');
   $header[] = t('Status');
+  $header[] = t('Expiration');
   $header[] = t('Operations');
 
   $output = drupal_render($form['options']);
@@ -363,6 +364,7 @@
       }
       $row[] = drupal_render($form['adtype'][$key]);
       $row[] = drupal_render($form['adstatus'][$key]);
+      $row[] = drupal_render($form['autoexpire'][$key]);
       $row[] = drupal_render($form['operations'][$key]);
       $rows[] = $row;
     }
