]> git.mxchange.org Git - friendica.git/blobdiff - mod/viewsrc.php
Merge pull request #4924 from annando/item-distribution
[friendica.git] / mod / viewsrc.php
index 1203d18fc9dc2597bf2c1d6a64ce59e9a35c318c..d2f0d01a07b183bc7b45f79f30e8f5b502363ad7 100644 (file)
@@ -1,18 +1,24 @@
 <?php
+/**
+ * @file mod/viewsrc.php
+ */
+use Friendica\App;
+use Friendica\Core\L10n;
+use Friendica\Database\DBM;
 
-if(! function_exists('viewsrc_content')) {
-function viewsrc_content(&$a) {
+function viewsrc_content(App $a) {
 
-       if(! local_user()) {
-               notice( t('Access denied.') . EOL);
+       if (! local_user()) {
+               notice(L10n::t('Access denied.') . EOL);
                return;
        }
 
+       $o = ''; 
        $item_id = (($a->argc > 1) ? intval($a->argv[1]) : 0);
 
        if(! $item_id) {
                $a->error = 404;
-               notice( t('Item not found.') . EOL);
+               notice(L10n::t('Item not found.') . EOL);
                return;
        }
 
@@ -24,7 +30,7 @@ function viewsrc_content(&$a) {
                dbesc($item_id)
        );
 
-       if(count($r))
+       if (DBM::is_result($r))
                if(is_ajax()) {
                        echo str_replace("\n",'<br />',$r[0]['body']);
                        killme();
@@ -33,4 +39,4 @@ function viewsrc_content(&$a) {
                }
        return $o;
 }
-}
+