diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-16 10:43:17 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-16 10:43:17 +0000 |
commit | 0c4dabd0c92b7663808674e8b17e17e71a506282 (patch) | |
tree | 1c9944615c866ce3567747e1e12d7875893e900b /index.php | |
parent | d39eab08115aad2add54b9382c3744728508df35 (diff) | |
download | elgg-0c4dabd0c92b7663808674e8b17e17e71a506282.tar.gz elgg-0c4dabd0c92b7663808674e8b17e17e71a506282.tar.bz2 |
Fixes #3144 not using undefined $options variable
git-svn-id: http://code.elgg.org/elgg/trunk@8732 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -24,7 +24,7 @@ if (elgg_is_logged_in()) { $content = elgg_view_title(elgg_echo('content:latest')); -$content .= elgg_list_river($options); +$content .= elgg_list_river(); global $autofeed; $autofeed = FALSE; |