]> git.mxchange.org Git - friendica.git/blobdiff - mod/contactgroup.php
Fix missing $ in front of variable names
[friendica.git] / mod / contactgroup.php
index 753d3a07332139f4690deb35d4eb8785e2a6e832..07997cd1160cbd9d7e58d89895d1a61081c2dc3b 100644 (file)
@@ -8,7 +8,7 @@ use Friendica\Model\Group;
 function contactgroup_content(App $a)
 {
        if (!local_user()) {
-               killme();
+               exit();
        }
 
        $change = null;
@@ -28,7 +28,7 @@ function contactgroup_content(App $a)
                        intval(local_user())
                );
                if (!DBA::isResult($r)) {
-                       killme();
+                       exit();
                }
 
                $group = $r[0];
@@ -49,5 +49,5 @@ function contactgroup_content(App $a)
                }
        }
 
-       killme();
+       exit();
 }