]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
split() is deprecated and should be explode()
authorMikael Nordfeldth <mmn@hethane.se>
Sun, 27 Dec 2015 14:22:16 +0000 (15:22 +0100)
committerMikael Nordfeldth <mmn@hethane.se>
Sun, 27 Dec 2015 14:22:38 +0000 (15:22 +0100)
We don't need the regexpness anyway.

plugins/Autocomplete/actions/autocomplete.php

index 29921a5564a377db07c9fc79cfde3cc33b22d919..04acaefd38c5a5557035ac79b4af1f78fcc93194 100644 (file)
@@ -29,9 +29,7 @@
  * @link      http://status.net/
  */
 
-if (!defined('GNUSOCIAL') && !defined('STATUSNET')) {
-    exit(1);
-}
+if (!defined('GNUSOCIAL')) { exit(1); }
 
 /**
  * List users for autocompletion
@@ -142,7 +140,7 @@ class AutocompleteAction extends Action
         foreach($this->profiles as $profile){
             $avatarUrl = $profile->avatarUrl(AVATAR_MINI_SIZE);
             $acct = $profile->getAcctUri();
-            $identifier = split(':', $profile->getAcctUri(), 2)[1];
+            $identifier = explode(':', $profile->getAcctUri(), 2)[1];
             $results[] = array(
                 'value' => '@'.$identifier,
                 'nickname' => $profile->getNickname(),
@@ -161,7 +159,7 @@ class AutocompleteAction extends Action
                 $avatarUrl = User_group::defaultLogo(AVATAR_MINI_SIZE);
             }
             $acct = $profile->getAcctUri();
-            $identifier = split(':', $profile->getAcctUri(), 2)[1];
+            $identifier = explode(':', $profile->getAcctUri(), 2)[1];
             $results[] = array(
                 'value' => '!'.$group->getNickname(),
                 'nickname' => $group->getNickname(),