From 0f59fa83fca62ccbba5c95cb73af3a5c58919bcc Mon Sep 17 00:00:00 2001 From: Awilum Date: Sun, 6 Jan 2013 18:50:50 +0200 Subject: [PATCH] Core Improvements: Next Round #79 #80 --- README.md | 2 +- engine/Core.php | 2 +- engine/Security.php | 2 +- engine/Uri.php | 4 ++-- index.php | 1 - libraries/Gelato/Gelato.php | 10 +++++----- libraries/Gelato/docs/README.md | 10 +++++----- engine/Orm.php => libraries/Idiorm/Idiorm.php | 2 +- robots.txt | 3 ++- 9 files changed, 18 insertions(+), 18 deletions(-) rename engine/Orm.php => libraries/Idiorm/Idiorm.php (99%) diff --git a/README.md b/README.md index 340510e..c5632a8 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Fast and small content management system written in PHP! 2. Donate to keep Monstra free. We will add you to Monstra [Sponsors Page.](http://monstra.org/about/sponsors) 3. Develop a new plugin. 4. Create a new theme. -5. Find and [report issues.](https://github.com/Awilum/monstra-cms/issues) +5. Find and [report issues.](https://github.com/Monstra/monstra-cms/issues) 6. Link back to [Monstra](http://monstra.org). diff --git a/engine/Core.php b/engine/Core.php index 7817c1a..742fa76 100644 --- a/engine/Core.php +++ b/engine/Core.php @@ -114,7 +114,7 @@ class Core // Init ORM if (defined('MONSTRA_DB_DSN')) { - require_once(ROOT . '/engine/Orm.php'); + require_once(ROOT . '/libraries/Idiorm/Idiorm.php'); Orm::configure(MONSTRA_DB_DSN); Orm::configure('username', MONSTRA_DB_USER); Orm::configure('password', MONSTRA_DB_PASSWORD); diff --git a/engine/Security.php b/engine/Security.php index 164f6e4..6f21de7 100644 --- a/engine/Security.php +++ b/engine/Security.php @@ -1,4 +1,4 @@ -