]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Update handle() method on Action subclasses.
authorChimo <chimo@chromic.org>
Wed, 1 Jun 2016 02:05:11 +0000 (02:05 +0000)
committerChimo <chimo@chromic.org>
Wed, 1 Jun 2016 02:26:44 +0000 (02:26 +0000)
Fixes handle()-related strict warnings such as "Strict Standards:
Declaration of AdminPanelAction::handle() should be compatible with
Action::handle()"

Ref. #190

103 files changed:
actions/addpeopletag.php
actions/apiaccountupdatedeliverydevice.php
actions/apiatomservice.php
actions/apigrouplistall.php
actions/apilistsubscriber.php
actions/apioauthaccesstoken.php
actions/apioauthauthorize.php
actions/apioauthrequesttoken.php
actions/apisearchatom.php
actions/apisearchjson.php
actions/apitrends.php
actions/approvegroup.php
actions/approvesub.php
actions/block.php
actions/cancelgroup.php
actions/deleteapplication.php
actions/deletegroup.php
actions/deleteuser.php
actions/editapplication.php
actions/editpeopletag.php
actions/featured.php
actions/foafgroup.php
actions/geocode.php
actions/groupblock.php
actions/groups.php
actions/groupunblock.php
actions/invite.php
actions/makeadmin.php
actions/nudge.php
actions/opensearch.php
actions/otp.php
actions/peopletag.php
actions/peopletagautocomplete.php
actions/peopletagged.php
actions/peopletagsbyuser.php
actions/peopletagsforuser.php
actions/peopletagsubscribers.php
actions/peopletagsubscriptions.php
actions/pluginenable.php
actions/profilecompletion.php
actions/profiletagbyid.php
actions/publictagcloud.php
actions/recoverpassword.php
actions/redirect.php
actions/register.php
actions/removepeopletag.php
actions/rsd.php
actions/showapplication.php
actions/subedit.php
actions/subscribe.php
actions/subscribepeopletag.php
actions/sup.php
actions/unsubscribe.php
actions/unsubscribepeopletag.php
lib/adminpanelaction.php
lib/profileformaction.php
lib/searchaction.php
plugins/AccountManager/actions/accountmanagementcontroldocument.php
plugins/AccountManager/actions/accountmanagementsessionstatus.php
plugins/ActivitySpam/actions/spam.php
plugins/AnonymousFave/actions/anondisfavor.php
plugins/AnonymousFave/actions/anonfavor.php
plugins/Bookmark/actions/apitimelinebookmarks.php
plugins/Bookmark/actions/bookmarks.php
plugins/CasAuthentication/actions/caslogin.php
plugins/ClientSideShorten/actions/shorten.php
plugins/DirectMessage/actions/showmessage.php
plugins/DirectMessage/lib/mailboxaction.php
plugins/Event/actions/timelist.php
plugins/ExtendedProfile/actions/userautocomplete.php
plugins/FacebookBridge/actions/facebookdeauthorize.php
plugins/FacebookBridge/actions/facebookfinishlogin.php
plugins/FacebookBridge/actions/facebooklogin.php
plugins/Favorite/actions/apifavoritedestroy.php
plugins/Favorite/actions/favorited.php
plugins/GNUsocialPhoto/actions/newphoto.php
plugins/GNUsocialPhotos/actions/editphoto.php
plugins/GNUsocialPhotos/actions/photos.php
plugins/GNUsocialPhotos/actions/photoupload.php
plugins/GNUsocialProfileExtensions/actions/bio.php
plugins/GNUsocialVideo/actions/postvideo.php
plugins/LinkPreview/actions/oembedproxy.php
plugins/Mapstraction/actions/map.php
plugins/OpenID/actions/finishaddopenid.php
plugins/OpenID/actions/finishopenidlogin.php
plugins/OpenID/actions/openidlogin.php
plugins/OpenID/actions/openidserver.php
plugins/OpenID/actions/openidtrust.php
plugins/OpenID/openid.php
plugins/RSSCloud/actions/loggingaggregator.php
plugins/RSSCloud/actions/rsscloudrequestnotify.php
plugins/Sample/actions/hello.php
plugins/SearchSub/actions/searchsub.php
plugins/SearchSub/actions/searchunsub.php
plugins/Share/actions/apistatusesretweets.php
plugins/Share/actions/apitimelineretweetsofme.php
plugins/Sitemap/actions/sitemap.php
plugins/Sitemap/actions/sitemapindex.php
plugins/TagSub/actions/tagsub.php
plugins/TagSub/actions/tagunsub.php
plugins/UserFlag/actions/adminprofileflag.php
plugins/UserFlag/actions/clearflag.php
plugins/UserFlag/actions/flagprofile.php

index b501ce0fd9679b245d36f300164f7b433e9cce26..3de29d54a2842ae7cf2fd8f50ff244746bc38185 100644 (file)
@@ -119,7 +119,7 @@ class AddpeopletagAction extends Action
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
         // Throws exception on error
         $ptag = Profile_tag::setTag($this->user->id, $this->tagged->id,
index a3cbb418b65d60c899ca865fbbe9a34efcbc69e1..d2f137077ddd00ce1e43d0e2b4a183a7770e244f 100644 (file)
@@ -73,9 +73,9 @@ class ApiAccountUpdateDeliveryDeviceAction extends ApiAuthAction
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
 
         if (!in_array($this->format, array('xml', 'json'))) {
             $this->clientError(
index 9e45a30fcc2e883434254f4ddd421b2b3747b714..87a39b56a38e5cfee871484b2b0d7ba1d564b9ee 100644 (file)
@@ -71,9 +71,9 @@ class ApiAtomServiceAction extends ApiBareAuthAction
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
 
         header('Content-Type: application/atomsvc+xml');
 
index 2fb3714257f7677258a07390539d807771633888..932e524ae1f45c9b204019b984380c3356a91a5c 100644 (file)
@@ -77,9 +77,9 @@ class ApiGroupListAllAction extends ApiPrivateAuthAction
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
 
         $sitename   = common_config('site', 'name');
         // TRANS: Message is used as a title when listing the lastest 20 groups. %s is a site name.
index f5cda15ae94aa8ce17d47b74f1d797ac722536f8..21c0b20b740ee521a3463eacaaa7a32c47cfb53b 100644 (file)
@@ -52,9 +52,9 @@ class ApiListSubscriberAction extends ApiBareAuthAction
         return true;
     }
 
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
 
         $arr = array('profile_tag_id' => $this->list->id,
                       'profile_id' => $this->target->id);
index a1a70a9b9e2be36aa949c163b1a142cca48863a9..8dd0a40b22abd8cfa56d577fd5e21ce946005f86 100644 (file)
@@ -52,9 +52,9 @@ class ApiOAuthAccessTokenAction extends ApiOAuthAction
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
 
         $datastore   = new ApiGNUsocialOAuthDataStore();
         $server      = new OAuthServer($datastore);
index d0dcf9c9c7a48f065258eb4b27dc112b74d140db..6c93d47ccdce2061122ad7a88fc0ad7b7b300b2b 100644 (file)
@@ -88,9 +88,9 @@ class ApiOAuthAuthorizeAction extends ApiOAuthAction
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
 
         if ($_SERVER['REQUEST_METHOD'] == 'POST') {
 
index e961f4f46464cf8463af219ba41a45f5a0cfb460..b85ca70c47ec3c452e470c06461297c354e22fa0 100644 (file)
@@ -69,9 +69,9 @@ class ApiOAuthRequestTokenAction extends ApiOAuthAction
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
 
         $datastore   = new ApiGNUsocialOAuthDataStore();
         $server      = new OAuthServer($datastore);
index 7e79808a9630aeeee13ca5e11ff3c5417b424456..fca745c1fd6ddbe2e4df340022c7604b100b2866 100644 (file)
@@ -128,9 +128,9 @@ class ApiSearchAtomAction extends ApiPrivateAuthAction
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
         common_debug("In apisearchatom handle()");
         $this->showAtom();
     }
index 794f23077bacbc1184c972888dad3c7db2b774c8..cec826c0164b3913ee83a674eb3f30dc67ac8b10 100644 (file)
@@ -95,9 +95,9 @@ class ApiSearchJSONAction extends ApiPrivateAuthAction
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
         $this->showResults();
     }
 
index a39769a34e60024fb1744d2ecc2cba109d2bf678..79bd452dbac6cd3813ea74c7ef1787aa134bd5d7 100644 (file)
@@ -66,9 +66,9 @@ class ApiTrendsAction extends ApiPrivateAuthAction
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
         $this->showTrends();
     }
 
index 2c8b354d347539bba7a630b81a640ef09e6bdf1a..18f62d28b17945955a49a5f2ec0d6b91b81c690e 100644 (file)
@@ -139,9 +139,9 @@ class ApprovegroupAction extends Action
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
 
         try {
             if ($this->approve) {
index c9fa804412a97b4abd0669c38be051b77cc81a64..aa8c23bf7d2d69158218b1b652cafae78f8f37bd 100644 (file)
@@ -97,9 +97,9 @@ class ApprovesubAction extends Action
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
         $cur = common_current_user();
 
         try {
index 53d8ae7ae0600c17a800cfc5e927a7efd40facfd..5a8996f807e5372ce463425db30c469c009368cb 100644 (file)
@@ -78,7 +78,7 @@ class BlockAction extends ProfileFormAction
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
         if ($_SERVER['REQUEST_METHOD'] == 'POST') {
             if ($this->arg('no')) {
index 93f630e0609123a59757bc96fc880279b1bdcffe..02e9493551d41c391ddf2d4423c3a651be1477aa 100644 (file)
@@ -127,9 +127,9 @@ class CancelgroupAction extends Action
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
 
         try {
             $this->request->abort();
index 5d7441098c8f73f1068491d5509208935626420e..297ddc54bc34efad0d1c68672cfc3231f332a8fd 100644 (file)
@@ -89,7 +89,7 @@ class DeleteapplicationAction extends Action
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
         if ($_SERVER['REQUEST_METHOD'] == 'POST') {
 
index c64bc1d8e90fd47fb91cfd4d0cd4743b358f8ad0..aacfe35bded368fee1e657975303b567d34452de 100644 (file)
@@ -114,9 +114,9 @@ class DeletegroupAction extends RedirectingAction
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
         if ($_SERVER['REQUEST_METHOD'] == 'POST') {
             if ($this->arg('no')) {
                 $this->returnToPrevious();
index 6e0c6ebf7f2357ad1916b0a86814ba7bb46e136f..d1b73f4746080cfebf7312f7fca0deefae372913 100644 (file)
@@ -80,7 +80,7 @@ class DeleteuserAction extends ProfileFormAction
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
         if ($_SERVER['REQUEST_METHOD'] == 'POST') {
             if ($this->arg('no')) {
index c7e5f9052c77fc81271687f72fd09edd34496c18..c0e27d86fb79e286a098ea5189b3c224d8133549 100644 (file)
@@ -94,9 +94,9 @@ class EditApplicationAction extends Action
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
 
         if ($_SERVER['REQUEST_METHOD'] == 'POST') {
             $this->handlePost($args);
index 45c8adaa7d59fc933a4ec70ddb157c5dfebfdc0f..02dc06180d0537d806b120a2293925b0df77da3c 100644 (file)
@@ -135,9 +135,9 @@ class EditpeopletagAction extends Action
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
         if ($_SERVER['REQUEST_METHOD'] == 'POST') {
             $this->trySave();
         } else {
index 394cfe6a8b9ef456325179533a3e5c00dbb48cc5..a30d5867a4e7b5b93290aab345b3df0a95b1e968 100644 (file)
@@ -74,9 +74,9 @@ class FeaturedAction extends Action
         }
     }
 
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
 
         $this->showPage();
     }
index f9c61ac5dcda9f7a409917ec569fc82e59d84af9..57303cf3626a42aa58c37c65a8635d86acec6914 100644 (file)
@@ -76,9 +76,9 @@ class FoafGroupAction extends Action
         return true;
     }
 
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
 
         header('Content-Type: application/rdf+xml');
 
index 9e208914c16ca088cf63cd7f08c43e07eb83cefc..6e4d1ce0f4714521ebb8cdce2b55a5fc7d2da26a 100644 (file)
@@ -70,7 +70,7 @@ class GeocodeAction extends Action
      * @return nothing
      *
      */
-    function handle($args)
+    function handle()
     {
         header('Content-Type: application/json; charset=utf-8');
         $location_object = array();
index d65b62bdff7980128e5d634ddc687729448973d0..4bf5d74c20d4e78485d356f62bc558e0710c0744 100644 (file)
@@ -110,9 +110,9 @@ class GroupblockAction extends RedirectingAction
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
         if ($_SERVER['REQUEST_METHOD'] == 'POST') {
             if ($this->arg('no')) {
                 $this->returnToPrevious();
index d1bc8d94583bd67169dfaad27d7bde211d1934a1..258fee262bbb139902247461dfaa944a80d7cdeb 100644 (file)
@@ -74,9 +74,9 @@ class GroupsAction extends Action
         return true;
     }
 
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
         $this->showPage();
     }
 
index a24177f64c0d94d8a50dd5b06abfa7066ac2ec09..7a4853aa37ff6c3762cf5b229e173215f0e0e01e 100644 (file)
@@ -103,9 +103,9 @@ class GroupunblockAction extends Action
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
         if ($_SERVER['REQUEST_METHOD'] == 'POST') {
             $this->unblockProfile();
         }
index 89b7e83bf6d19a32899e05db5fe2b32ac1439cb3..827e0266966de2d0025f52c7332fed93377496ec 100644 (file)
@@ -38,9 +38,9 @@ class InviteAction extends Action
         return false;
     }
 
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
         if (!common_config('invite', 'enabled')) {
             // TRANS: Client error displayed when trying to sent invites while they have been disabled.
             $this->clientError(_('Invites have been disabled.'));
index 05912e150cc4d493b537394c836edba78705aa1c..8c88d4cd6931f73c40c03cfc24e15c491f221444 100644 (file)
@@ -111,9 +111,9 @@ class MakeadminAction extends RedirectingAction
      * @return void
      */
 
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
         if ($_SERVER['REQUEST_METHOD'] == 'POST') {
             $this->makeAdmin();
         }
index 801d1f06810aa343dbfe78e2cb37e005db519cd8..8ade7fa2720adda351aad671185d4899b03ee6d2 100644 (file)
@@ -55,9 +55,9 @@ class NudgeAction extends Action
      *
      * @return nothing
      */
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
 
         if (!common_logged_in()) {
             // TRANS: Error message displayed when trying to perform an action that requires a logged in user.
index b1529860a87487cd3382211e3fe4e7260a49e0c6..b7ed3212c2caa25aa24fb333ee04a5b253d94a7d 100644 (file)
@@ -53,9 +53,9 @@ class OpensearchAction extends Action
      *
      * @return boolean false if user doesn't exist
      */
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
         $type       = $this->trimmed('type');
         $short_name = '';
         if ($type == 'people') {
index c44f3673ae7524f2902158a67fa645dcfec10fb9..c5f3e70b26e2a87ef6d9b8b368883b02848a9d62 100644 (file)
@@ -110,9 +110,9 @@ class OtpAction extends Action
         return true;
     }
 
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
 
         // success!
         if (!common_set_user($this->user)) {
index b0a6e2635deb72b94a2cb63b2de2ebe2e72418f9..007e722a0bef3a4fc3c8786d79157e8c50d0a703 100644 (file)
@@ -84,9 +84,9 @@ class PeopletagAction extends Action
         return true;
     }
 
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
         $this->showPage();
     }
 
index c239c03bfb0d3d9c1c4321ba798b1911f7396b42..c165b4080565feac15612cbe1ef9d4a4e87e6637 100644 (file)
@@ -112,7 +112,7 @@ class PeopletagautocompleteAction extends Action
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
         //common_log(LOG_DEBUG, 'Autocomplete data: ' . json_encode($this->tags));
         if ($this->tags) {
index cf9ec053ed404b64b243c8bfeeb8ccde3a0bb46d..d82a448ce541be60037fbbaa604d406e17a75642 100644 (file)
@@ -117,9 +117,9 @@ class PeopletaggedAction extends Action
         }
     }
 
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
         $this->showPage();
     }
 
index 4a04ea2fbbf8c0d4e1f703e4d6d29cac96896087..0b85bf295673d10428825c23ef74183b0ca43a4e 100644 (file)
@@ -135,9 +135,9 @@ class PeopletagsbyuserAction extends Action
         return true;
     }
 
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
 
                # Post from the tag dropdown; redirect to a GET
 
index 7679be0b862ad2ec74f3c32d58e255ee6c41c040..909969db2230057772c9ff0f9c7faa730eda4e1a 100644 (file)
@@ -95,9 +95,9 @@ class PeopletagsforuserAction extends Action
         return true;
     }
 
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
         $this->showPage();
     }
 
index 589d49caa3be8469eddc6c3b7ba456039bf482c8..354f2deb0e57cd019bcced0507c5e2a86097233c 100644 (file)
@@ -117,9 +117,9 @@ class PeopletagsubscribersAction extends Action
         }
     }
 
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
         $this->showPage();
     }
 
index 64edd0929025b6c126955cfb8d22d4810b3c3d3f..2be9187b9ea1cf732a685c4f50269fa316a62ee5 100644 (file)
@@ -97,9 +97,9 @@ class PeopletagsubscriptionsAction extends Action
         return true;
     }
 
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
         $this->showPage();
     }
 
index 707cbdecaab45870995a43d0d08c2354e1c9a9b1..da36f0995f8f37686ede93d2e04b337b73345e22 100644 (file)
@@ -121,7 +121,7 @@ class PluginEnableAction extends Action
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
         $key = 'disable-' . $this->plugin;
         Config::save('plugins', $key, $this->overrideValue());
index aaf6026eb58115c0ccef5134f0cc5e6da8c2e3b9..a931d6aead40dd3fc4868e7557550c225ce08089 100644 (file)
@@ -120,7 +120,7 @@ class ProfilecompletionAction extends Action
      * @return void
      */
 
-    function handle($args)
+    function handle()
     {
         $this->msg = null;
 
index ce7298a2f6b7038829c872533aff2026d2d700dd..4804e35c833f854b0cb27dacf639f9cba778b55a 100644 (file)
@@ -83,7 +83,7 @@ class ProfiletagbyidAction extends Action
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
         common_redirect($this->peopletag->homeUrl(), 303);
     }
index db8185bb13d8a7eb142b0b9a29621d9a4eab12a8..e557b75fd034705c3249d7805a72c07a7924d20e 100644 (file)
@@ -92,9 +92,9 @@ class PublictagcloudAction extends Action
         $this->elementEnd('div');
     }
 
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
         $this->showPage();
     }
 
index d19ed4693c360838c2fae8246ccc9c9c90009f82..f3192b5dd3929b8ea99e1536708cf61ed61fd806 100644 (file)
@@ -29,9 +29,9 @@ class RecoverpasswordAction extends Action
     var $msg = null;
     var $success = null;
 
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
         if (common_logged_in()) {
             // TRANS: Client error displayed trying to recover password while already logged in.
             $this->clientError(_('You are already logged in!'));
index 9cb03708db8a94ba0b78553cf7911fe0c05be856..1fb952da4166be0c7ca40f8939ebb669b5103130 100644 (file)
@@ -63,7 +63,7 @@ class RedirectAction extends Action
      *
      * @return nothing
      */
-    function handle($args)
+    function handle()
     {
         common_redirect(common_local_url($this->arg('nextAction'), $this->arg('args')));
     }
index 97f0e19cfdd64143f8a5d46e2d74b5985f03212c..6f23244d13526d2ac2d5898e53bf9bcadcbee15d 100644 (file)
@@ -120,9 +120,9 @@ class RegisterAction extends Action
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
 
         if (common_config('site', 'closed')) {
             // TRANS: Client error displayed when trying to register to a closed site.
index 8192e86b44fd4246c932136a92f6c01eee9f5022..529bcbcb170c91a31525ae21337499effbf1a6d7 100644 (file)
@@ -120,7 +120,7 @@ class RemovepeopletagAction extends Action
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
         // Throws exception on error
 
index bd8042f0cd86cc3a10945a25b01c8d1f32f11bd2..92cf8b95e32da1d5b87b3152570e8672bb32e178 100644 (file)
@@ -126,7 +126,7 @@ class RsdAction extends Action
      *
      * @return nothing
      */
-    function handle($args)
+    function handle()
     {
         header('Content-Type: application/rsd+xml');
 
index d8ac293d404138719d69e6f79bfd0c93ac44d218..ecc3b268feb6624f49108cb1c7af8d9cd9a540f2 100644 (file)
@@ -101,9 +101,9 @@ class ShowApplicationAction extends Action
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
 
         if ($_SERVER['REQUEST_METHOD'] == 'POST') {
 
index 47fe19ea244f0c2cee9ed8cc77a9e4e08cfb0d3f..9e779c4f0657c104d75c2b2843ac1993358b5c32 100644 (file)
@@ -58,9 +58,9 @@ class SubeditAction extends Action
         return true;
     }
 
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
         if ($_SERVER['REQUEST_METHOD'] == 'POST') {
             $cur = common_current_user();
 
index 320409afa07460d36c94d427c4ee8bc014667375..f8b6093bbd8e178b11831cb5e4ff4adc410e134c 100644 (file)
@@ -118,7 +118,7 @@ class SubscribeAction extends Action
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
         // Throws exception on error
 
index b83ff70010e15c60a42a61de89d70b5a9a5d0d34..e9d4cbcc377c371ab17dce10680ecbf8e37aefbd 100644 (file)
@@ -106,9 +106,9 @@ class SubscribepeopletagAction extends Action
      * @return void
      */
 
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
 
         $cur = common_current_user();
 
index 911f0d9e5551955916e45c1dcbb4c9b815452352..5e26e8b106791f489c961d5cf7e7592020f6306c 100644 (file)
@@ -22,9 +22,9 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
 // @todo FIXME: documentation needed.
 class SupAction extends Action
 {
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
 
         $seconds = $this->trimmed('seconds');
 
index 4b85ba427ca1b18d611434865ffb0dfce1dcbff3..524fbea284183755f3279f166a8d963174573293 100644 (file)
@@ -44,9 +44,9 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
  */
 class UnsubscribeAction extends Action
 {
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
         if (!common_logged_in()) {
             // TRANS: Error message displayed when trying to perform an action that requires a logged in user.
             $this->clientError(_('Not logged in.'));
index b5757ad6fdb7d719b7ba78e46b5635fe635de6d4..7d9925720d9b35b4909364b6b77c4d93151a38fd 100644 (file)
@@ -106,9 +106,9 @@ class UnsubscribepeopletagAction extends Action
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
 
         $cur = common_current_user();
 
index a7cb9fc72277d96fabd5d5f802d3775e006591d6..322c6d7358844856179d2c42839a0e0f24ee6036 100644 (file)
@@ -119,7 +119,7 @@ class AdminPanelAction extends Action
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
         if ($_SERVER['REQUEST_METHOD'] == 'POST') {
             $this->checkSessionToken();
index 1e00e6f12b80c5102ad454386d8c3acd48ca8c3b..e340627e9d6b84fc31b571695851a33f11bdb376 100644 (file)
@@ -96,9 +96,9 @@ class ProfileFormAction extends RedirectingAction
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
 
         if ($_SERVER['REQUEST_METHOD'] == 'POST') {
             try {
index aea8860356d3170054c15c8ca7a0b90b11e3c24c..5ede78d41425fa9daa32cbe34defced970ebce4a 100644 (file)
@@ -56,9 +56,9 @@ class SearchAction extends Action
         return true;
     }
 
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
         $this->showPage();
     }
 
index 955779b4ee6477bdea4ba4fcaea58c237a381d9f..8f9eca61de4ac373f131d111fab207e1fb150dd7 100644 (file)
@@ -49,9 +49,9 @@ class AccountManagementControlDocumentAction extends Action
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
 
         header('Content-Type: application/json; charset=utf-8');
 
index 9eeff72402658bafdc365596b1e17e79715c76a3..af8dbffc93ac0c10c0354ad8f521a503c033821c 100644 (file)
@@ -49,9 +49,9 @@ class AccountManagementSessionStatusAction extends Action
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
 
         $cur = common_current_user();
         if(empty($cur)) {
index 00a1e0b8a1b7bfe10a443a8363d07af2841e8acc..fa2e5737c71622ee693168f8a5064f9bdb8720c7 100644 (file)
@@ -106,7 +106,7 @@ class SpamAction extends Action
 
     function handle($argarray=null)
     {
-        parent::handle($args);
+        parent::handle();
 
         $this->showPage();
     }
index 6b0fae82c1584a58a621ab2cc831afa414f6f1db..82b9ac5917e9d6c466c3cf3322f28e23621580ba 100644 (file)
@@ -47,9 +47,9 @@ class AnonDisfavorAction extends RedirectingAction
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
 
         $profile = AnonymousFavePlugin::getAnonProfile();
 
index 287c25cbe98455c12c698e7c31bbfa471554deea..114810ae71b041f1247bb22702ae332364ad70a5 100644 (file)
@@ -47,9 +47,9 @@ class AnonFavorAction extends RedirectingAction
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
 
         $profile = AnonymousFavePlugin::getAnonProfile();
 
index ee43617127630e4859cf2bce4229063f19db424f..2376e994ace07aa4cda667a9b5f0026facbc2290 100644 (file)
@@ -82,9 +82,9 @@ class ApiTimelineBookmarksAction extends ApiBareAuthAction
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
         $this->showTimeline();
     }
 
index 6c79fa1d024ecdacac30111a3780964f1455974e..0c908a2ca86c95d180c707ed9eadce26fb0828df 100644 (file)
@@ -107,9 +107,9 @@ class BookmarksAction extends Action
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
         $this->showPage();
     }
 
index 09377c62ebb8b763a6584dcb19a293d95f1dcedb..7310072d92b770b0290495ee4b874b5f31230227 100644 (file)
@@ -21,9 +21,9 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
 
 class CasloginAction extends Action
 {
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
         if (common_is_real_login()) {
             // TRANS: Client error displayed when trying to log in while already logged on.
             $this->clientError(_m('Already logged in.'));
index 6840d532aab720d4d21d2bdbf47431d9ccc3383f..8351839cdb519fb96fb8e9ec72c52096ebfc4100 100644 (file)
@@ -60,7 +60,7 @@ class ShortenAction extends Action
 
     function handle($args=null)
     {
-        parent::handle($args);
+        parent::handle();
         header('Content-Type: text/plain');
         $shortened_text = common_shorten_links($this->text);
         print $shortened_text;
index 86fbee8b73f95c303ac21f477da1a474d997b00c..f7dc3731b4d87a748b250518c4565487981c3479 100644 (file)
@@ -89,7 +89,7 @@ class ShowmessageAction extends Action
         return true;
     }
 
-    function handle($args)
+    function handle()
     {
         $this->showPage();
     }
index 3c7281e9852121d2b948b39eac803d092058e313..fd2e1fabc4f934ed5ddfa453fa47f7715147042b 100644 (file)
@@ -70,9 +70,9 @@ class MailboxAction extends Action
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
 
         if (!$this->user) {
             // TRANS: Client error displayed when trying to access a mailbox without providing a user.
index 092fa6bda5922793551846452bc452a56a10e45c..c24613a8d40d8c4b629f7ca8b41e293c8224b905 100644 (file)
@@ -56,9 +56,9 @@ class TimelistAction extends Action {
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
 
         if (!common_logged_in()) {
             // TRANS: Error message displayed when trying to perform an action that requires a logged in user.
index d4857429e0488df77507b116e92b834c6ffec3a2..9c3afbd1060e14a2efb40969e924be81afd7f2e1 100644 (file)
@@ -57,9 +57,9 @@ class UserautocompleteAction extends Action
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
         $this->showResults();
     }
 
index 443b768f5c83215db241e3ed132c7000abfa26cd..9173850ca5ef2279552049699503d96b817dbfd6 100644 (file)
@@ -60,9 +60,9 @@ class FacebookdeauthorizeAction extends Action
      *
      * @param array $args is ignored since it's now passed in in prepare()
      */
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
 
         $data = $this->facebook->getSignedRequest();
 
index 7cf493a994101cb6ca5214fab58545c986fdcac6..93d4aaeacdaa6fef23ffdea1db04bdff1c814bc8 100644 (file)
@@ -79,9 +79,9 @@ class FacebookfinishloginAction extends Action
         return true;
     }
 
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
 
         if (common_is_real_login()) {
 
index f30822b63f536dfd78fbb89304d8c4495774033f..c79b74654f18f93e85a7508a92d15d7ca706ee22 100644 (file)
@@ -34,9 +34,9 @@ if (!defined('STATUSNET')) {
 
 class FacebookloginAction extends Action
 {
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
 
         if (common_is_real_login()) {
             // TRANS: Client error displayed when trying to login while already logged in.
index 1c63ad26285c5da0b52214cf087f831c3baba8d9..cf5659978ac0b60e56826059b0e8d1ea072e84c4 100644 (file)
@@ -82,9 +82,9 @@ class ApiFavoriteDestroyAction extends ApiAuthAction
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
 
         if ($_SERVER['REQUEST_METHOD'] != 'POST') {
             $this->clientError(
index 8c2871dc3c8c8ded54c041087f1718ded379fb04..dbd0ebe5bf9750e39592f4efaf59f8540ce83a6b 100644 (file)
@@ -114,9 +114,9 @@ class FavoritedAction extends Action
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
 
         $this->showPage();
     }
index 18ae5523a05aee25e8aa241eb1b2c9ca3cce5645..4f9f293e96f497d8c7af9e804f20877830771592 100644 (file)
@@ -50,9 +50,9 @@ class NewphotoAction extends Action
         return true;
     }
 
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
 
         if ($this->isPost()) {
             $this->handlePost($args);
index 35dac7bf3f6298d921d62f100ffdd8b7d6059e5b..db36813f2729e4054a47cc727126b65cf02188d6 100644 (file)
@@ -46,9 +46,9 @@ class EditphotoAction extends Action
         return true;
     }
 
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
         if($_SERVER['REQUEST_METHOD'] == 'POST') {
             $this->handlePost();
         }
index b1e1b73ff1198cb97b681477fab25b09e5994420..082736cd21dd73d5213f0d27d30767d283b0b2ff 100644 (file)
@@ -53,9 +53,9 @@ class PhotosAction extends Action
         return true;
     }
 
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
         $this->showPage();
     }
 
index 25bd4f84d0e585ed0282968066698c7fc99fda35..6dd5f9aef1ca86e320f0a6adb9fa800923ebe544 100644 (file)
@@ -43,9 +43,9 @@ class PhotouploadAction extends Action
         return true;
     }
 
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
         if($_SERVER['REQUEST_METHOD'] == 'POST') {
             $this->handlePost();
         }
index 269389e07dff451c2de832f3564745fe4c15f279..3022e6e76169437726ca11badbc6a33f1e753ff1 100644 (file)
@@ -51,9 +51,9 @@ class BioAction extends Action
 
     }
 
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
         $this->showPage();
     }
 
index bdd86abc9e15b33b050c81c43a0ccd3fbde0ffbc..729afc5d2d52791c7f541ba371e0fdac04231b5a 100644 (file)
@@ -54,9 +54,9 @@ class PostvideoAction extends Action {
         return true;
     }
    
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
 
         if ($this->isPost()) {
             $this->handlePost($args);
index 97b0942441e94a8a93bcb9663ae13c26294fed51..e36239216ad71be678175183f7294f9f4705b725 100644 (file)
@@ -46,7 +46,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
  */
 class OembedproxyAction extends OembedAction
 {
-    function handle($args)
+    function handle()
     {
         // Trigger short error responses; not a human-readable web page.
         GNUsocial::setApi(true);
index 75a065a26a36ca74806f7673627c9be85c723194..0a5334103ea4aa96883843e111cb0dda4564e62c 100644 (file)
@@ -94,9 +94,9 @@ class MapAction extends Action
         return true;
     }
 
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
         $this->showPage();
     }
 
index 5182e50778736d2325f3e6a20de29bfcf8ae07df..e3e100c9e486baa1885a35bd2bfd9a190c9f0067 100644 (file)
@@ -58,9 +58,9 @@ class FinishaddopenidAction extends Action
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
         if (!common_logged_in()) {
             // TRANS: Error message displayed when trying to perform an action that requires a logged in user.
             $this->clientError(_m('Not logged in.'));
index 3a99988fb59093fccf76e6b064ab35482abdae26..f91d10d252bdcc792bfc5e33cba59a28424e671c 100644 (file)
@@ -29,9 +29,9 @@ class FinishopenidloginAction extends Action
     var $username = null;
     var $message = null;
 
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
         if (common_is_real_login()) {
             // TRANS: Client error message trying to log on with OpenID while already logged on.
             $this->clientError(_m('Already logged in.'));
index 86ebcae2e1d26335944938d1b1a20afb73d777a5..b06189e2fdb8666d0007e863c50e76b8369e992b 100644 (file)
@@ -25,9 +25,9 @@ require_once INSTALLDIR.'/plugins/OpenID/openid.php';
 
 class OpenidloginAction extends Action
 {
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
         if (common_is_real_login()) {
             // TRANS: Client error message trying to log on with OpenID while already logged on.
             $this->clientError(_m('Already logged in.'));
index d4bb6e25f4f41feefaa4346a14c5e478a73802c0..acab0938b81d9eda2b8b8bc4ec207bc20921461a 100644 (file)
@@ -57,9 +57,9 @@ class OpenidserverAction extends Action
         return true;
     }
 
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
         $request = $this->oserver->decodeRequest();
         if (in_array($request->mode, array('checkid_immediate',
             'checkid_setup'))) {
index 3f8a3a93b77afb73b0e6d3457684172cbda11b2f..3c0e24981f1c70f6c03046cfeb2db93323805912 100644 (file)
@@ -71,9 +71,9 @@ class OpenidtrustAction extends Action
         return true;
     }
 
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
         if($_SERVER['REQUEST_METHOD'] == 'POST'){
             $this->handleSubmit();
         }else{
index ee854e8140e274433b6decd6e08be0f15e576277..c96248ad0fc701d2c4fb8cd43825faf4043c487a 100644 (file)
@@ -359,9 +359,9 @@ class AutosubmitAction extends Action
     var $form_html = null;
     var $form_id = null;
 
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
         $this->showPage();
     }
 
index 824fa9ee9c7d678fe50f65b0d28a40209c282f4f..a50e99011c44ed7cdf6b86d85b6e6ef5ad1996e2 100644 (file)
@@ -77,9 +77,9 @@ class LoggingAggregatorAction extends Action
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
 
         if (empty($this->url)) {
             // TRANS: Form validation error displayed when a URL parameter is missing.
index 7fd6da05098bc401f9073812ca372dbcd6f0df76..4656fc96507d0caec7e48afcadc6c00f50f88f16 100644 (file)
@@ -82,9 +82,9 @@ class RSSCloudRequestNotifyAction extends Action
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
 
         if ($_SERVER['REQUEST_METHOD'] != 'POST') {
             // TRANS: Form validation error displayed when POST is not used.
index da5682b332a0b4e6eadace042f393b725a049df5..c0bde93d7d946341600278826ca9de829d878985 100644 (file)
@@ -91,9 +91,9 @@ class HelloAction extends Action
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
 
         $this->showPage();
     }
index 586f2252f67a70bcdb269d9033da9675d377357d..ae1e1550ae877c94655bc8067164d5d85f1b159d 100644 (file)
@@ -118,7 +118,7 @@ class SearchsubAction extends Action
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
         // Throws exception on error
 
index a6ce0f07c5b9e0e681e0da9e39bc42c8b7cb03f3..1bc3a1c95b82c754218cc7fa32fd672b9e28aaaa 100644 (file)
@@ -62,7 +62,7 @@ class SearchunsubAction extends SearchsubAction
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
         // Throws exception on error
 
index 7af4cd3ec6649959832917de0019e43188df2ee0..9a75aa8918aea43a6d0f3ddfee144a138720f251 100644 (file)
@@ -89,9 +89,9 @@ class ApiStatusesRetweetsAction extends ApiAuthAction
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
 
         $strm = $this->original->repeatStream($this->cnt);
 
index fe90213665074e7e6b4e430946c22200c4c6925e..58c6886af6e99b99023eefcae2eec689d69c6fba 100644 (file)
@@ -83,9 +83,9 @@ class ApiTimelineRetweetsOfMeAction extends ApiAuthAction
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
 
         $offset = ($this->page-1) * $this->cnt;
         $limit  = $this->cnt;
index ef77645c3166133aeeff59eddfd43574d0a7c2e1..16c2014efd010d19e5149a75880a11f0bfdb40b2 100644 (file)
@@ -49,9 +49,9 @@ class SitemapAction extends Action
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
 
         header('Content-Type: text/xml; charset=UTF-8');
         $this->startXML();
index ab89c2156c936afd18b52f6ea5b64502bd6b80e0..09e3c805e05f599d878fed197d9ef54abd7b8b64 100644 (file)
@@ -49,7 +49,7 @@ class SitemapindexAction extends Action
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
         header('Content-Type: text/xml; charset=UTF-8');
         $this->startXML();
index de333c8f58971659805094cb475fe381532ca4e2..f9ecaa94af25f7876fa50f56ae392f8125c68b3b 100644 (file)
@@ -118,7 +118,7 @@ class TagsubAction extends Action
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
         // Throws exception on error
 
index 43afab08e374c5e2b9dbbcf826b9f746887dcb27..4e04a55b958af0ab0ce35ba1dd979ee71f5c8ae7 100644 (file)
@@ -62,7 +62,7 @@ class TagunsubAction extends TagsubAction
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
         // Throws exception on error
 
index 9b5b4088bf0f2555c1bf619750fda7a85ea296e6..708bd99d296a132f6345b724afe67e7277b4e0c9 100644 (file)
@@ -107,9 +107,9 @@ class AdminprofileflagAction extends Action
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
-        parent::handle($args);
+        parent::handle();
 
         $this->showPage();
     }
index c2443d6d58e76521199b1da01595b3d70a8bff36..28152fb0791efa4479a383ff990f4307e7dde1c5 100644 (file)
@@ -73,7 +73,7 @@ class ClearflagAction extends ProfileFormAction
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
         if ($_SERVER['REQUEST_METHOD'] == 'POST') {
             $this->handlePost();
index 4c4dc46f60ffcb044a3a7e6e932fa7b6ea3df7fd..ec036fc064c0ca0d17ec5abc7f3d8273323d8374 100644 (file)
@@ -73,7 +73,7 @@ class FlagprofileAction extends ProfileFormAction
      *
      * @return void
      */
-    function handle($args)
+    function handle()
     {
         if ($_SERVER['REQUEST_METHOD'] == 'POST') {
             $this->handlePost();