Update the photo albums cache on upload, album deletion or renaming
This commit is contained in:
parent
94027f19b4
commit
08fb35838c
|
@ -208,6 +208,9 @@ function photos_post(&$a) {
|
||||||
dbesc($album),
|
dbesc($album),
|
||||||
intval($page_owner_uid)
|
intval($page_owner_uid)
|
||||||
);
|
);
|
||||||
|
// Update the photo albums cache
|
||||||
|
photo_albums($page_owner_uid, true);
|
||||||
|
|
||||||
$newurl = str_replace(bin2hex($album),bin2hex($newalbum),$_SESSION['photo_return']);
|
$newurl = str_replace(bin2hex($album),bin2hex($newalbum),$_SESSION['photo_return']);
|
||||||
goaway($newurl);
|
goaway($newurl);
|
||||||
return; // NOTREACHED
|
return; // NOTREACHED
|
||||||
|
@ -294,7 +297,11 @@ function photos_post(&$a) {
|
||||||
proc_run(PRIORITY_HIGH, "include/notifier.php", "drop", $drop_id);
|
proc_run(PRIORITY_HIGH, "include/notifier.php", "drop", $drop_id);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Update the photo albums cache
|
||||||
|
photo_albums($page_owner_uid, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
goaway('photos/' . $a->data['user']['nickname']);
|
goaway('photos/' . $a->data['user']['nickname']);
|
||||||
return; // NOTREACHED
|
return; // NOTREACHED
|
||||||
}
|
}
|
||||||
|
@ -359,6 +366,9 @@ function photos_post(&$a) {
|
||||||
$url = App::get_baseurl();
|
$url = App::get_baseurl();
|
||||||
$drop_id = intval($i[0]['id']);
|
$drop_id = intval($i[0]['id']);
|
||||||
|
|
||||||
|
// Update the photo albums cache
|
||||||
|
photo_albums($page_owner_uid, true);
|
||||||
|
|
||||||
if ($i[0]['visible'])
|
if ($i[0]['visible'])
|
||||||
proc_run(PRIORITY_HIGH, "include/notifier.php", "drop", $drop_id);
|
proc_run(PRIORITY_HIGH, "include/notifier.php", "drop", $drop_id);
|
||||||
}
|
}
|
||||||
|
@ -457,6 +467,8 @@ function photos_post(&$a) {
|
||||||
dbesc($resource_id),
|
dbesc($resource_id),
|
||||||
intval($page_owner_uid)
|
intval($page_owner_uid)
|
||||||
);
|
);
|
||||||
|
// Update the photo albums cache
|
||||||
|
photo_albums($page_owner_uid, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Don't make the item visible if the only change was the album name */
|
/* Don't make the item visible if the only change was the album name */
|
||||||
|
@ -913,6 +925,8 @@ function photos_post(&$a) {
|
||||||
. '[/url]';
|
. '[/url]';
|
||||||
|
|
||||||
$item_id = item_store($arr);
|
$item_id = item_store($arr);
|
||||||
|
// Update the photo albums cache
|
||||||
|
photo_albums($page_owner_uid, true);
|
||||||
|
|
||||||
if ($visible)
|
if ($visible)
|
||||||
proc_run(PRIORITY_HIGH, "include/notifier.php", 'wall-new', $item_id);
|
proc_run(PRIORITY_HIGH, "include/notifier.php", 'wall-new', $item_id);
|
||||||
|
|
Loading…
Reference in a new issue