diff options
author | root <root@diekershoff.homeunix.net> | 2011-01-08 08:24:24 +0100 |
---|---|---|
committer | root <root@diekershoff.homeunix.net> | 2011-01-08 08:24:24 +0100 |
commit | d6b8e8c6a98fb05c9f38f2c323502eb452c031ff (patch) | |
tree | 6f682f0a10839404514364e447becf9c7b75cccd /mod/profile.php | |
parent | 1a60291222c0ebb1e0d181cc1d597e9218c2621b (diff) | |
parent | 618adb15937843db854a6cc8e7888dad3e81e8a4 (diff) | |
download | volse-hubzilla-d6b8e8c6a98fb05c9f38f2c323502eb452c031ff.tar.gz volse-hubzilla-d6b8e8c6a98fb05c9f38f2c323502eb452c031ff.tar.bz2 volse-hubzilla-d6b8e8c6a98fb05c9f38f2c323502eb452c031ff.zip |
Merge branch 'master' of git://github.com/friendika/friendika
Diffstat (limited to 'mod/profile.php')
-rw-r--r-- | mod/profile.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/profile.php b/mod/profile.php index 5479f2806..e8eee810b 100644 --- a/mod/profile.php +++ b/mod/profile.php @@ -245,7 +245,7 @@ function profile_content(&$a, $update = 0) { $alike = array(); $dlike = array(); - if(count($r)) { + if($r !== false && count($r)) { foreach($r as $item) { like_puller($a,$item,$alike,'like'); |