mirror of
https://github.com/friendica/friendica
synced 2024-11-10 10:22:53 +00:00
first recently uploaded photo (in 3 hours) to an older existing album, post made visible
This commit is contained in:
parent
c1b2e90e37
commit
d2863d1859
2 changed files with 3 additions and 3 deletions
2
boot.php
2
boot.php
|
@ -4,7 +4,7 @@ set_time_limit(0);
|
||||||
ini_set('pcre.backtrack_limit', 250000);
|
ini_set('pcre.backtrack_limit', 250000);
|
||||||
|
|
||||||
|
|
||||||
define ( 'FRIENDIKA_VERSION', '2.2.1003' );
|
define ( 'FRIENDIKA_VERSION', '2.2.1004' );
|
||||||
define ( 'DFRN_PROTOCOL_VERSION', '2.21' );
|
define ( 'DFRN_PROTOCOL_VERSION', '2.21' );
|
||||||
define ( 'DB_UPDATE_VERSION', 1061 );
|
define ( 'DB_UPDATE_VERSION', 1061 );
|
||||||
|
|
||||||
|
|
|
@ -548,13 +548,13 @@ foreach($_FILES AS $key => $val) {
|
||||||
*
|
*
|
||||||
* We create a wall item for every photo, but we don't want to
|
* We create a wall item for every photo, but we don't want to
|
||||||
* overwhelm the data stream with a hundred newly uploaded photos.
|
* overwhelm the data stream with a hundred newly uploaded photos.
|
||||||
* So we will make one photo (the first one uploaded to this album)
|
* So we will make the first photo uploaded to this album in the last several hours
|
||||||
* visible by default, the rest will become visible over time when and if
|
* visible by default, the rest will become visible over time when and if
|
||||||
* they acquire comments, likes, dislikes, and/or tags
|
* they acquire comments, likes, dislikes, and/or tags
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
$r = q("SELECT * FROM `photo` WHERE `album` = '%s' AND `uid` = %d",
|
$r = q("SELECT * FROM `photo` WHERE `album` = '%s' AND `uid` = %d AND `created` > UTC_TIMESTAMP() - INTERVAL 3 HOUR ",
|
||||||
dbesc($album),
|
dbesc($album),
|
||||||
intval($page_owner_uid)
|
intval($page_owner_uid)
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue