diff options
author | Cash Costello <cash.costello@gmail.com> | 2011-11-10 07:31:37 -0500 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2011-11-10 07:31:37 -0500 |
commit | ed5637b991ab341ead6a97276f313b84f263a145 (patch) | |
tree | 5eba0a60c722dc55f12837d30ee867412a67cfa1 /start.php | |
parent | 59811d171349c3b903fef77a6ca7268d79b3edc4 (diff) | |
download | elgg-ed5637b991ab341ead6a97276f313b84f263a145.tar.gz elgg-ed5637b991ab341ead6a97276f313b84f263a145.tar.bz2 |
moved classes into classes directory
Diffstat (limited to 'start.php')
-rw-r--r-- | start.php | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -10,9 +10,9 @@ define('TP_OLD_ALBUM', 0); define('TP_NEW_ALBUM', 1); // include core libraries -include dirname(__FILE__) . "/lib/tidypics.php"; -include dirname(__FILE__) . "/lib/image.php"; -include dirname(__FILE__) . "/lib/album.php"; +require dirname(__FILE__) . "/lib/tidypics.php"; +require dirname(__FILE__) . "/classes/TidypicsImage.php"; +require dirname(__FILE__) . "/classes/TidypicsAlbum.php"; // Make sure tidypics_init is called on initialization |