--- smart_paging.admin.inc.orig	2011-09-20 16:08:53.000000000 +0800
+++ smart_paging.admin.inc	2011-09-20 16:50:07.000000000 +0800
@@ -25,6 +25,24 @@ function smart_paging_admin_settings($fo
     '#title'         => t('Use javascript pager as progressive enhancement for Drupal native pager'),
     '#default_value' => variable_get('smart_paging_use_js_pager', TRUE),
   );
+
+  $form['smart_paging_outbound_url_exclude_by_path'] = array(
+      '#type'          => 'textarea',
+      '#title'         => t('Path to exclude in url outbound alter'),
+      '#default_value' => variable_get('smart_paging_outbound_url_exclude_by_path'),
+      '#description'   => t('Put each url in a new line'),
+      '#cols' => 30,
+  );
+
+  $form['smart_paging_outbound_url_exclude_by_ct'] = array(
+      '#type'          => 'textarea',
+      '#title'         => t('Content Type to exclude in url outbound alter'),
+      '#default_value' => variable_get('smart_paging_outbound_url_exclude_by_ct'),
+      '#description'   => t('Put Content Type machine name in a new line'),
+      '#cols' => 30,
+      );
+
+
   // Container for default values
   $form['smart_paging_defaults'] = array(
     '#type'        => 'fieldset',
