could not delete photos

This commit is contained in:
Friendika 2010-11-07 03:36:03 -08:00
parent ce2f8c939d
commit 944c14b9e6
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ function photos_post(&$a) {
}
if(($a->argc > 1) && (x($_POST,'delete')) && ($_POST['delete'] == t('Delete Photo'))) {
$r = q("SELECT `id` FROM `photo` WHERE `uid` = %d AND `resource-id` = '%s' LIMIT 1",
$r = q("SELECT `id`, `resource-id` FROM `photo` WHERE `uid` = %d AND `resource-id` = '%s' LIMIT 1",
intval(local_user()),
dbesc($a->argv[1])
);