From 153d7007ac8364f82cd4f92074d728220c7e15d0 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Sun, 31 Jul 2011 13:04:49 -0500 Subject: [PATCH] moved asset container to system directory. --- system/asset.php | 2 +- system/{asset/container.php => asset_container.php} | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) rename system/{asset/container.php => asset_container.php} (99%) diff --git a/system/asset.php b/system/asset.php index bbd3a92a..b09cc0b7 100644 --- a/system/asset.php +++ b/system/asset.php @@ -19,7 +19,7 @@ class Asset { { if ( ! isset(static::$containers[$container])) { - static::$containers[$container] = new Asset\Container($container); + static::$containers[$container] = new Asset_Container($container); } return static::$containers[$container]; diff --git a/system/asset/container.php b/system/asset_container.php similarity index 99% rename from system/asset/container.php rename to system/asset_container.php index be0528bf..fe6a71d1 100644 --- a/system/asset/container.php +++ b/system/asset_container.php @@ -1,8 +1,8 @@ -