Skip to content

Commit

Permalink
Remove debugging code
Browse files Browse the repository at this point in the history
That little piece of code was a little hack that allowed us to switch between
themes quickly just adding a parameter to the URL. It's probably not a good
idea to include that in the release :).
  • Loading branch information
sevein committed Oct 4, 2013
1 parent 29eff1e commit 1a32e37
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,14 @@ public function initialize()

$pluginNames = unserialize($query[0]->__get('value', array('sourceCulture' => true)));

if (isset($_GET['t']))
{
if (false !== $key = array_search('arArchivesCanadaPlugin', $pluginNames))
{
unset($pluginNames[$key]);
$pluginNames[] = 'arDominionPlugin';
}
}
// if (isset($_GET['t']))
// {
// if (false !== $key = array_search('arArchivesCanadaPlugin', $pluginNames))
// {
// unset($pluginNames[$key]);
// $pluginNames[] = 'arDominionPlugin';
// }
// }

// Find available plugins in the filesystem
$pluginPaths = $this->configuration->getAllPluginPaths();
Expand Down

0 comments on commit 1a32e37

Please sign in to comment.