diff --git a/modules/user.module b/modules/user.module
index 5bde04273bf998551bcc2b0f29b6544f43a057a8..b12bc2b2f117b2639e54d4af0e2aa9a1ad584e67 100644
--- a/modules/user.module
+++ b/modules/user.module
@@ -484,7 +484,7 @@ function user_block() {
 
   // Who's online block
   $time = 60 * 60; // minutes * seconds
-  $limit = 0; // List the X most recent people
+  $limit = 5; // List the X most recent people
 
   $result = db_query("SELECT uid, name FROM users WHERE timestamp > unix_timestamp() - ($time) ORDER BY timestamp DESC LIMIT $limit");
 
diff --git a/modules/user/user.module b/modules/user/user.module
index 5bde04273bf998551bcc2b0f29b6544f43a057a8..b12bc2b2f117b2639e54d4af0e2aa9a1ad584e67 100644
--- a/modules/user/user.module
+++ b/modules/user/user.module
@@ -484,7 +484,7 @@ function user_block() {
 
   // Who's online block
   $time = 60 * 60; // minutes * seconds
-  $limit = 0; // List the X most recent people
+  $limit = 5; // List the X most recent people
 
   $result = db_query("SELECT uid, name FROM users WHERE timestamp > unix_timestamp() - ($time) ORDER BY timestamp DESC LIMIT $limit");
 
diff --git a/update.php b/update.php
index 9a22969c105e54b032bf059e36a8c606d7047119..fd7ce3ccc70b288662347a8806bed29fa1c0e88a 100644
--- a/update.php
+++ b/update.php
@@ -334,7 +334,7 @@ function update_22() {
 }
 
 function update_23() {
-  update_sql("CREATE TABLE search_index (word varchar(50) default NULL, lno int(10) unsigned default NULL, type varchar(16) default NULL, count int(10) unsigned default NULL, KEY lno (lno), KEY word (word);");
+  update_sql("CREATE TABLE search_index (word varchar(50) default NULL, lno int(10) unsigned default NULL, type varchar(16) default NULL, count int(10) unsigned default NULL, KEY lno (lno), KEY word (word));");
 }
 
 /*