diff --git a/on_the_web.module b/on_the_web.module
index 0ac7e3c..7bd11c1 100755
--- a/on_the_web.module
+++ b/on_the_web.module
@@ -156,7 +156,7 @@ function on_the_web_display_block($delta) {
  *    List of services with icons.
  */
 function on_the_web_get_services() {
-  return array(
+  $services = array(
     'twitter' => array('name' => 'Twitter'),
     'facebook' => array('name' => 'Facebook'),
     'youtube' => array('name' => 'YouTube'),
@@ -169,6 +169,8 @@ function on_the_web_get_services() {
   );
 
   drupal_alter('on_the_web_get_services', $services);
+
+  return $services;
 }
 
 /**
