]> git.mxchange.org Git - friendica.git/blobdiff - mod/viewsrc.php
Merge pull request #4328 from tobiasd/20180125-msg
[friendica.git] / mod / viewsrc.php
index ccb07697025836fb03c8939141958974067b4b17..376e2ef68e30984f04787c894473bdb558cd5f84 100644 (file)
@@ -1,10 +1,15 @@
 <?php
+/**
+ * @file mod/viewsrc.php
+ */
+use Friendica\App;
+use Friendica\Core\L10n;
+use Friendica\Database\DBM;
 
+function viewsrc_content(App $a) {
 
-function viewsrc_content(App &$a) {
-
-       if(! local_user()) {
-               notice( t('Access denied.') . EOL);
+       if (! local_user()) {
+               notice(L10n::t('Access denied.') . EOL);
                return;
        }
 
@@ -12,11 +17,11 @@ function viewsrc_content(App &$a) {
 
        if(! $item_id) {
                $a->error = 404;
-               notice( t('Item not found.') . EOL);
+               notice(L10n::t('Item not found.') . EOL);
                return;
        }
 
-       $r = q("SELECT `item`.`body` FROM `item` 
+       $r = q("SELECT `item`.`body` FROM `item`
                WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
                and `item`.`moderated` = 0
                AND `item`.`id` = '%s' LIMIT 1",
@@ -24,7 +29,7 @@ function viewsrc_content(App &$a) {
                dbesc($item_id)
        );
 
-       if (dbm::is_result($r))
+       if (DBM::is_result($r))
                if(is_ajax()) {
                        echo str_replace("\n",'<br />',$r[0]['body']);
                        killme();