diff --git a/sites/all/modules/extlink/extlink.module b/sites/all/modules/extlink/extlink.module
index 70d6f56..834ffba 100644
--- a/sites/all/modules/extlink/extlink.module
+++ b/sites/all/modules/extlink/extlink.module
@@ -114,9 +114,9 @@
     '#description' =>
       '<p>' . t('External links uses patterns (regular expressions) to match the "href" property of links.') . '</p>' .
       t('Here are some common patterns.') .
-      theme('item_list', $patterns) .
+      theme('item_list', array('items' => $patterns)) .
       t('Common special characters:') .
-      theme('item_list', $wildcards) .
+      theme('item_list', array('items' => $wildcards)) .
       '<p>' . t('All special characters (<em>^ $ . ? ( ) | * +</em>) must also be escaped with backslashes. Patterns are not case-sensitive. Any <a href="http://www.javascriptkit.com/javatutors/redev2.shtml">pattern supported by JavaScript</a> may be used.') . '</p>',
   );
 