Skip to content

Commit

Permalink
checking for moving plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
dogmatic69 committed Jan 4, 2010
1 parent c367703 commit 17ef586
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 10 deletions.
12 changes: 2 additions & 10 deletions config/bootstrap.php
Expand Up @@ -48,13 +48,5 @@
* Inflector::rules('plural', array('rules' => array(), 'irregular' => array(), 'uninflected' => array()));
*
*/
App::build(
array(
'plugins' => array(
dirname( dirname( __FILE__ ) ).DS.'core'
)
)
);


?>
App::build( array( 'plugins' => array( dirname( dirname( __FILE__ ) ).DS.'core'.DS ) ) );
?>
1 change: 1 addition & 0 deletions config/routes.php
Expand Up @@ -45,5 +45,6 @@
* cms routes
*/
Router::connect('/admin/cms', array( 'plugin' => 'cms', 'controller' => 'categories', 'action' => 'dashboard', 'prefix' => 'admin', 'admin' => true ) );
//Router::connect('/admin/cms/:controller/:action/*', array( 'plugin' => 'cms', 'admin' => true ) );
Router::connect('/cms', array( 'plugin' => 'cms', 'controller' => 'contentFrontpages' ) );
?>

0 comments on commit 17ef586

Please sign in to comment.