projects
/
platal.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f575146
)
Do not notify death to a deceased user (Closes #1354).
author
Stéphane Jacob
<sj@m4x.org>
Thu, 2 Dec 2010 14:18:56 +0000
(15:18 +0100)
committer
Stéphane Jacob
<sj@m4x.org>
Fri, 3 Dec 2010 15:04:10 +0000
(16:04 +0100)
Signed-off-by: Stéphane Jacob <sj@m4x.org>
bin/cron/profile_modification.php
patch
|
blob
|
blame
|
history
diff --git
a/bin/cron/profile_modification.php
b/bin/cron/profile_modification.php
index
252e392
..
ef7cbdf
100755
(executable)
--- a/
bin/cron/profile_modification.php
+++ b/
bin/cron/profile_modification.php
@@
-31,7
+31,7
@@
$res = XDB::iterator('SELECT p.hrpid, pm.pid, a.full_name, pm.field, pm.oldText
INNER JOIN profile_display AS pd ON (pm.pid = pd.pid)
INNER JOIN account_profiles AS ap ON (pm.pid = ap.pid AND FIND_IN_SET(\'owner\', ap.perms))
INNER JOIN aliases AS al ON (ap.uid = al.uid AND FIND_IN_SET(\'bestalias\', al.flags))
- WHERE pm.type = \'third_party\'
+ WHERE pm.type = \'third_party\'
AND pm.field != \'deathdate\'
ORDER BY pm.pid, pm.field, pm.timestamp');
if ($res->total() > 0) {