diff options
author | friendica <info@friendica.com> | 2012-03-13 14:36:52 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-03-13 14:36:52 -0700 |
commit | acc4bbeb6ebc832da2a8b5a37b764a6a53dd1214 (patch) | |
tree | 018927c54c16f68aeae7153c81c404d3e9cbbc7d /mod/message.php | |
parent | 5a4167646553e589cf9647c0e0d0446e3f5fd672 (diff) | |
parent | 59766b944c9ea3a45b1d7e8593f7bb5d4a0b8445 (diff) | |
download | volse-hubzilla-acc4bbeb6ebc832da2a8b5a37b764a6a53dd1214.tar.gz volse-hubzilla-acc4bbeb6ebc832da2a8b5a37b764a6a53dd1214.tar.bz2 volse-hubzilla-acc4bbeb6ebc832da2a8b5a37b764a6a53dd1214.zip |
Merge pull request #129 from CatoTH/master
CSRF-Protection and minor changes
Diffstat (limited to 'mod/message.php')
-rwxr-xr-x | mod/message.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/message.php b/mod/message.php index 57d45ee3c..37f92e8d9 100755 --- a/mod/message.php +++ b/mod/message.php @@ -192,7 +192,7 @@ function message_content(&$a) { $a->set_pager_total($r[0]['total']); $r = q("SELECT max(`mail`.`created`) AS `mailcreated`, min(`mail`.`seen`) AS `mailseen`, - `mail`.* , `contact`.`name`, `contact`.`url`, `contact`.`thumb` + `mail`.* , `contact`.`name`, `contact`.`url`, `contact`.`thumb` , `contact`.`network` FROM `mail` LEFT JOIN `contact` ON `mail`.`contact-id` = `contact`.`id` WHERE `mail`.`uid` = %d AND `from-url` $eq '%s' GROUP BY `parent-uri` ORDER BY `created` DESC LIMIT %d , %d ", intval(local_user()), |