mirror of
https://github.com/friendica/friendica
synced 2025-03-26 02:41:28 +00:00
Fix getBirthdays()
- Formatting optimizations - Remove redundant ASC
This commit is contained in:
parent
6eab7d9f14
commit
7b3515e706
1 changed files with 10 additions and 10 deletions
|
@ -508,7 +508,7 @@ class Profile
|
||||||
AND NOT `contact`.`archive`
|
AND NOT `contact`.`archive`
|
||||||
AND NOT `contact`.`deleted`
|
AND NOT `contact`.`deleted`
|
||||||
WHERE `event`.`uid` = ? AND `type` = 'birthday' AND `start` < ? AND `finish` > ?
|
WHERE `event`.`uid` = ? AND `type` = 'birthday' AND `start` < ? AND `finish` > ?
|
||||||
ORDER BY `start` ASC ",
|
ORDER BY `start`",
|
||||||
Contact::SHARING,
|
Contact::SHARING,
|
||||||
Contact::FRIEND,
|
Contact::FRIEND,
|
||||||
local_user(),
|
local_user(),
|
||||||
|
|
Loading…
Add table
Reference in a new issue