Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update for compatibilty with SUPEE-6285 #19

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@

Simple fork to add [SUPEE-6285 compatibility](https://github.com/jreinke/magento-admin-theme/pull/19)
(*Thanks to [aurmil](https://github.com/aurmil) to submit [issue](https://github.com/jreinke/magento-admin-theme/issues/18) on [original project repository](https://github.com/jreinke/magento-admin-theme.git)*)

![Magento Admin Theme - Magento.com](http://i.imgur.com/9o7Dt70.png)

![Magento Admin Theme - Magento 2](http://i.imgur.com/gYzYTeI.png)
Expand All @@ -14,11 +18,11 @@ Install with [modgit](https://github.com/jreinke/modgit):

$ cd /path/to/magento
$ modgit init
$ modgit clone admin-theme https://github.com/jreinke/magento-admin-theme.git
$ modgit clone admin-theme https://github.com/nolwennig/magento-admin-theme.git

or download package manually:

* Download latest version [here](https://github.com/jreinke/magento-admin-theme/archive/master.zip)
* Download latest version [here](https://github.com/nolwennig/magento-admin-theme/archive/master.zip)
* Logout from admin
* Unzip in Magento root folder
* Clear cache
Expand All @@ -28,4 +32,4 @@ or download package manually:

Switch theme from dropdown added in footer.

Other awesome Magento extensions available here [www.bubbleshop.net](https://www.bubbleshop.net/)
Other awesome Magento extensions available here [www.bubbleshop.net](https://www.bubbleshop.net/)
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,9 @@ public function changeAction()
}
$this->_redirectReferer();
}
}

protected function _isAllowed()
{
return Mage::getSingleton('admin/session')->isAllowed('system/config');
}
}