From 2cc1da20e788c65001cabf9444c634f25a50f335 Mon Sep 17 00:00:00 2001 From: Chad Little Date: Sat, 9 Feb 2013 08:36:28 -0800 Subject: [PATCH] Mobile-ize Phriction Summary: Walk through using Phriction on mobile, cleaned up missing conversion. Test Plan: View History, edit document, create document, delete document. Reviewers: epriestley, btrahan Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D4872 --- .../phriction/controller/PhrictionEditController.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/applications/phriction/controller/PhrictionEditController.php b/src/applications/phriction/controller/PhrictionEditController.php index 42ace421a3..188d54a14c 100644 --- a/src/applications/phriction/controller/PhrictionEditController.php +++ b/src/applications/phriction/controller/PhrictionEditController.php @@ -251,7 +251,7 @@ final class PhrictionEditController 'uri' => '/phriction/preview/?draftkey='.$draft_key, )); - return $this->buildStandardPageResponse( + return $this->buildApplicationPage( array( $draft_note, $error_view, @@ -260,6 +260,7 @@ final class PhrictionEditController ), array( 'title' => pht('Edit Document'), + 'device' => true, )); }