]> git.mxchange.org Git - friendica.git/blobdiff - mod/attach.php
added more curly braces + space between "if" and brace
[friendica.git] / mod / attach.php
index 274acfc2bed8af1f4e23af00eb267e6fa9925cfd..94cb75a386d2a7f6d7ae7681635a495d8f39d7ad 100644 (file)
@@ -16,7 +16,7 @@ function attach_init(&$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 +29,7 @@ function attach_init(&$a) {
                dbesc($item_id)
        );
 
-       if(! dbm::is_result($r)) {
+       if (! dbm::is_result($r)) {
                notice( t('Permission denied.') . EOL);
                return;
        }