From: Evan Prodromou Date: Mon, 1 Mar 2010 19:40:39 +0000 (-0500) Subject: send smaller error pages for OMB API endpoints X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=90689008ee8649d9592ad97579d7de44d1ce389d;p=quix0rs-gnu-social.git send smaller error pages for OMB API endpoints --- diff --git a/actions/postnotice.php b/actions/postnotice.php index fb06703766..f092d54d1d 100644 --- a/actions/postnotice.php +++ b/actions/postnotice.php @@ -54,7 +54,10 @@ class PostnoticeAction extends Action */ function prepare($argarray) { + StatusNet::setApi(true); // Send smaller error pages + parent::prepare($argarray); + try { $this->checkNotice(); } catch (Exception $e) { diff --git a/actions/updateprofile.php b/actions/updateprofile.php index e416a6fa93..dfc31f5427 100644 --- a/actions/updateprofile.php +++ b/actions/updateprofile.php @@ -55,6 +55,8 @@ class UpdateprofileAction extends Action */ function prepare($argarray) { + StatusNet::setApi(true); // Send smaller error pages + parent::prepare($argarray); $license = $_POST['omb_listenee_license']; $site_license = common_config('license', 'url');