From c71163997abccd891e8c5b2fda57793f55ced107 Mon Sep 17 00:00:00 2001 From: bsimpson63 Date: Wed, 22 May 2013 22:15:37 -0400 Subject: [PATCH] Cleanup extension_handling variable in _edit_normal_reddit. --- r2/r2/controllers/front.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/r2/r2/controllers/front.py b/r2/r2/controllers/front.py index 3f745ccb3..884285984 100755 --- a/r2/r2/controllers/front.py +++ b/r2/r2/controllers/front.py @@ -592,7 +592,6 @@ class FrontController(RedditController, OAuth2ResourceController): or moderator_rel and all(moderator_rel.has_permission(perm) for perm in perms)) - extension_handling = False if is_moderator_with_perms('config') and location == 'edit': pane = PaneStack() if created == 'true': @@ -649,7 +648,7 @@ class FrontController(RedditController, OAuth2ResourceController): return EditReddit(content=pane, show_wiki_actions=is_wiki_action, location=location, - extension_handling=extension_handling).render() + extension_handling=False).render() @base_listing @prevent_framing_and_css(allow_cname_frame=True)