diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-07-15 23:14:59 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-07-15 23:14:59 -0400 |
commit | 542cadd33c0fbf672192ce3e16b69b2a285ea421 (patch) | |
tree | 8ac249f9117ac8e1f4578a42a8f5d72750e6ff61 | |
parent | af03429704d55a408f92579d316f9693e63f38c4 (diff) |
lcase tname
darcs-hash:20080716031459-84dde-ccb707bb9059bbc95eabb48cf32edf6dfe803108.gz
-rw-r--r-- | lib/util.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util.php b/lib/util.php index ce8637884..acc907480 100644 --- a/lib/util.php +++ b/lib/util.php @@ -875,7 +875,7 @@ function common_save_replies($notice) { return true; } # XXX: is there another way to make an array copy? - $names = ($tname) ? array_unique(array_merge($match[1], array($tname))) : $match[1]; + $names = ($tname) ? array_unique(array_merge($match[1], array(strtolower($tname)))) : $match[1]; $sender = Profile::staticGet($notice->profile_id); # store replied only for first @ (what user/notice what the reply directed, # we assume first @ is it) |