Skip to content

Commit

Permalink
followup
Browse files Browse the repository at this point in the history
  • Loading branch information
kulbakin committed Dec 27, 2013
1 parent 994fe4e commit 2b1c767
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
Expand Up @@ -34,8 +34,12 @@ protected function _initialize(KConfig $config)
*/
protected function _actionBrowse($context)
{
// revision listing is not allowed
throw new KHttpException('Not Found', KHttpResponse::NOT_FOUND);
if ('gadget' != $context->request->layout) {
// only gadget revision listing is not allowed
throw new KHttpException('Not Found', KHttpResponse::NOT_FOUND);
}

return parent::_actionBrowse($context);
}

/**
Expand Down
3 changes: 0 additions & 3 deletions src/site/templates/base/css/style.less
Expand Up @@ -96,9 +96,6 @@
// ANAHITA TODOS
@import 'components/todos.less';

// ANAHITA TODOS
@import 'components/pages.less';

// ANAHITA SUBSCRIPTIONS
@import 'components/subscriptions.less';

Expand Down

0 comments on commit 2b1c767

Please sign in to comment.