]> git.mxchange.org Git - friendica.git/blobdiff - mod/update_network.php
Move Notify::TYPE_MAIL
[friendica.git] / mod / update_network.php
index 9c89d1fcdd6b7bacf244e2533b7078faecfad3d2..9aa0443f1e3cc76700abb4d6253390daf47aabf7 100644 (file)
@@ -5,15 +5,14 @@
  */
 
 use Friendica\App;
-use Friendica\Core\L10n;
-use Friendica\Core\PConfig;
+use Friendica\DI;
 
 require_once "mod/network.php";
 
 function update_network_content(App $a)
 {
-       if (empty($_GET['p']) || empty($_GET['item'])) {
-               killme();
+       if (!isset($_GET['p']) || !isset($_GET['item'])) {
+               exit();
        }
 
        $profile_uid = intval($_GET['p']);
@@ -23,14 +22,14 @@ function update_network_content(App $a)
        echo "<!DOCTYPE html><html><body>\r\n";
        echo "<section>";
 
-       if (!PConfig::get($profile_uid, "system", "no_auto_update") || ($_GET["force"] == 1)) {
+       if (!DI::pConfig()->get($profile_uid, "system", "no_auto_update") || ($_GET["force"] == 1)) {
                $text = network_content($a, $profile_uid, $parent);
        } else {
                $text = "";
        }
 
-       if (PConfig::get(local_user(), "system", "bandwidth_saver")) {
-               $replace = "<br />" . L10n::t("[Embedded content - reload page to view]") . "<br />";
+       if (DI::pConfig()->get(local_user(), "system", "bandwidth_saver")) {
+               $replace = "<br />" . DI::l10n()->t("[Embedded content - reload page to view]") . "<br />";
                $pattern = "/<\s*audio[^>]*>(.*?)<\s*\/\s*audio>/i";
                $text = preg_replace($pattern, $replace, $text);
                $pattern = "/<\s*video[^>]*>(.*?)<\s*\/\s*video>/i";
@@ -44,5 +43,5 @@ function update_network_content(App $a)
        echo str_replace("\t", "       ", $text);
        echo "</section>";
        echo "</body></html>\r\n";
-       killme();
+       exit();
 }