]> git.mxchange.org Git - friendica.git/blobdiff - mod/wall_attach.php
Removed "service class" functionality
[friendica.git] / mod / wall_attach.php
index 9f455a19f345ff1fddfaf50be7f24f8c2930fded..c9d13abef4df037b610828c9828e53a02f187dde 100644 (file)
@@ -114,26 +114,6 @@ function wall_attach_post(App $a) {
                killme();
        }
 
-       $limit = service_class_fetch($page_owner_uid,'attach_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();
-               }
-       }
-
        $filedata = @file_get_contents($src);
        $mimetype = z_mime_content_type($filename);
        $hash = get_guid(64);