1
1
Fork 0

Removed "service class" functionality

This commit is contained in:
Michael 2017-10-18 21:44:27 +00:00
commit 0695fa699c
12 changed files with 6 additions and 224 deletions

View file

@ -189,29 +189,6 @@ function wall_upload_post(App $a, $desktopmode = true) {
killme();
}
$limit = service_class_fetch($page_owner_uid, 'photo_upload_limit');
if ($limit) {
$r = q("SELECT SUM(OCTET_LENGTH(`data`)) AS `total` FROM `photo`
WHERE `uid` = %d AND `scale` = 0
AND `album` != 'Contact Photos' ",
intval($page_owner_uid)
);
$size = $r[0]['total'];
if (($size + strlen($imagedata)) > $limit) {
$msg = upgrade_message(true);
if ($r_json) {
echo json_encode(array('error'=>$msg));
} else {
echo $msg. EOL;
}
@unlink($src);
killme();
}
}
$imagedata = @file_get_contents($src);
$ph = new Photo($imagedata, $filetype);