]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Make 'activity' a blacklisted nickname
authorMikael Nordfeldth <mmn@hethane.se>
Mon, 9 Mar 2015 16:07:24 +0000 (17:07 +0100)
committerMikael Nordfeldth <mmn@hethane.se>
Mon, 9 Mar 2015 16:08:10 +0000 (17:08 +0100)
Will add a plugin called ActivityVerb which makes activity interaction
more standardized.

lib/installer.php

index e69de7a33ac3eab0b215b1d2840182cb873e7bba..9e2936ca82dc5860c10e00827197787fef4c24ac 100644 (file)
@@ -224,7 +224,7 @@ abstract class Installer
         }
         // @fixme hardcoded list; should use Nickname::isValid()
         // if/when it's safe to have loaded the infrastructure here
-        $blacklist = array('main', 'panel', 'twitter', 'settings', 'rsd.xml', 'favorited', 'featured', 'favoritedrss', 'featuredrss', 'rss', 'getfile', 'api', 'groups', 'group', 'peopletag', 'tag', 'user', 'message', 'conversation', 'notice', 'attachment', 'search', 'index.php', 'doc', 'opensearch', 'robots.txt', 'xd_receiver.html', 'facebook');
+        $blacklist = array('main', 'panel', 'twitter', 'settings', 'rsd.xml', 'favorited', 'featured', 'favoritedrss', 'featuredrss', 'rss', 'getfile', 'api', 'groups', 'group', 'peopletag', 'tag', 'user', 'message', 'conversation', 'notice', 'attachment', 'search', 'index.php', 'doc', 'opensearch', 'robots.txt', 'xd_receiver.html', 'facebook', 'activity');
         if (in_array($this->adminNick, $blacklist)) {
             $this->updateStatus('The user nickname "' . htmlspecialchars($this->adminNick) .
                          '" is reserved.', true);