Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/site/app/app_controller.php
diff options
context:
space:
mode:
authorwclouser@mozilla.com <wclouser@mozilla.com@4eb1ac78-321c-0410-a911-ec516a8615a5>2008-03-25 15:28:38 (GMT)
committer wclouser@mozilla.com <wclouser@mozilla.com@4eb1ac78-321c-0410-a911-ec516a8615a5>2008-03-25 15:28:38 (GMT)
commit94637e70e6db10e7956a0060598bc5d95d48f786 (patch)
treed75e336eea822e2b09d1cfd6eacf1a9582b1b6de /site/app/app_controller.php
parent1e1a187f5c1e04eee8425915c486d05dbc860763 (diff)
Patch for 422257
git-svn-id: http://svn.mozilla.org/addons/trunk@11514 4eb1ac78-321c-0410-a911-ec516a8615a5
Diffstat (limited to 'site/app/app_controller.php')
-rw-r--r--site/app/app_controller.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/site/app/app_controller.php b/site/app/app_controller.php
index 0f4a120..71281a1 100644
--- a/site/app/app_controller.php
+++ b/site/app/app_controller.php
@@ -53,7 +53,7 @@ class AppController extends Controller
*
* @var string 'high' or 'low'
*/
- var $securityLevel = 'high';
+ var $securityLevel = 'medium';
/**
* array keys not to be sanitized when using publish()
@@ -314,6 +314,10 @@ class AppController extends Controller
define('CAKE_SECURITY', 'low');
break;
+ case 'medium':
+ define('CAKE_SECURITY', 'medium');
+ break;
+
case 'high':
default:
define('CAKE_SECURITY', 'high');