diff options
author | friendica <info@friendica.com> | 2012-08-26 23:05:00 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-08-26 23:05:00 -0700 |
commit | 5ff6e9348b41bc87b03bafc4d9df73b383af074e (patch) | |
tree | c26b1b26cd38f7ec78e83905266053618a3e1db4 /mod/msearch.php | |
parent | f0e299a97a8c46fd66bbc47e5b84d4b76d763154 (diff) | |
download | volse-hubzilla-5ff6e9348b41bc87b03bafc4d9df73b383af074e.tar.gz volse-hubzilla-5ff6e9348b41bc87b03bafc4d9df73b383af074e.tar.bz2 volse-hubzilla-5ff6e9348b41bc87b03bafc4d9df73b383af074e.zip |
a few minor changes
Diffstat (limited to 'mod/msearch.php')
-rw-r--r-- | mod/msearch.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/msearch.php b/mod/msearch.php index 89de5b705..c4d69839c 100644 --- a/mod/msearch.php +++ b/mod/msearch.php @@ -28,7 +28,7 @@ function msearch_post(&$a) { $results[] = array( 'name' => $rr['name'], 'url' => $a->get_baseurl() . '/profile/' . $rr['nickname'], - 'photo' => $a->get_baseurl() . '/photo/avatar/' . $rr['uid'] . '.jpg', + 'photo' => $a->get_baseurl() . '/photo/avatar/' . $rr['uid'], 'tags' => str_replace(array(',',' '),array(' ',' '),$rr['pub_keywords']) ); } |