]> git.mxchange.org Git - friendica.git/blobdiff - mod/attach.php
Add INNER JOIN to admin pending user list please @annando
[friendica.git] / mod / attach.php
index 80a2222bc9892410b8f2d7c152019857777cfbb0..6dd9135e511d9d2f00243512723bfe8d000780ad 100644 (file)
@@ -1,10 +1,13 @@
 <?php
 
+use Friendica\App;
+use Friendica\Database\DBM;
+
 require_once('include/security.php');
 
 function attach_init(App $a) {
 
-       if ($a->argc != 2) {
+       if($a->argc != 2) {
                notice( t('Item not available.') . EOL);
                return;
        }
@@ -16,7 +19,7 @@ function attach_init(App $a) {
        $r = q("SELECT * FROM `attach` WHERE `id` = %d LIMIT 1",
                intval($item_id)
        );
-       if (! dbm::is_result($r)) {
+       if (! DBM::is_result($r)) {
                notice( t('Item was not found.'). EOL);
                return;
        }
@@ -29,7 +32,7 @@ function attach_init(App $a) {
                dbesc($item_id)
        );
 
-       if (! dbm::is_result($r)) {
+       if (! DBM::is_result($r)) {
                notice( t('Permission denied.') . EOL);
                return;
        }
@@ -38,7 +41,7 @@ function attach_init(App $a) {
        // error in Chrome for filenames with commas in them
        header('Content-type: ' . $r[0]['filetype']);
        header('Content-length: ' . $r[0]['filesize']);
-       if (isset($_GET['attachment']) && $_GET['attachment'] === '0')
+       if(isset($_GET['attachment']) && $_GET['attachment'] === '0')
                header('Content-disposition: filename="' . $r[0]['filename'] . '"');
        else
                header('Content-disposition: attachment; filename="' . $r[0]['filename'] . '"');