From 19d306231411090a8948103efafd326cd4dec21a Mon Sep 17 00:00:00 2001 From: shish Date: Mon, 7 May 2007 15:04:46 +0000 Subject: [PATCH] extensions moved to folders git-svn-id: file:///home/shish/svn/shimmie2/trunk@75 7f39781d-f577-437e-ae19-be835c7a54ca --- contrib/{autocomplete.ext.php => autocomplete/main.php} | 0 contrib/{notes.ext.php => notes/main.php} | 0 contrib/{rating.ext.php => rating/main.php} | 0 contrib/{site_description.ext.php => site_description/main.php} | 0 ext/{alias_editor.ext.php => alias_editor/main.php} | 0 ext/{bulk_add.ext.php => bulk_add/main.php} | 0 ext/{comment.ext.php => comment/main.php} | 0 ext/{downtime.ext.php => downtime/main.php} | 0 ext/{et.ext.php => et/main.php} | 0 ext/{ipban.ext.php => ipban/main.php} | 0 ext/{news.ext.php => news/main.php} | 0 ext/{regen_thumb.ext.php => regen_thumb/main.php} | 0 ext/{rss_images.ext.php => rss_images/main.php} | 0 ext/{tag_list.ext.php => tag_list/main.php} | 0 ext/{zoom.ext.php => zoom/main.php} | 0 index.php | 2 +- 16 files changed, 1 insertion(+), 1 deletion(-) rename contrib/{autocomplete.ext.php => autocomplete/main.php} (100%) rename contrib/{notes.ext.php => notes/main.php} (100%) rename contrib/{rating.ext.php => rating/main.php} (100%) rename contrib/{site_description.ext.php => site_description/main.php} (100%) rename ext/{alias_editor.ext.php => alias_editor/main.php} (100%) rename ext/{bulk_add.ext.php => bulk_add/main.php} (100%) rename ext/{comment.ext.php => comment/main.php} (100%) rename ext/{downtime.ext.php => downtime/main.php} (100%) rename ext/{et.ext.php => et/main.php} (100%) rename ext/{ipban.ext.php => ipban/main.php} (100%) rename ext/{news.ext.php => news/main.php} (100%) rename ext/{regen_thumb.ext.php => regen_thumb/main.php} (100%) rename ext/{rss_images.ext.php => rss_images/main.php} (100%) rename ext/{tag_list.ext.php => tag_list/main.php} (100%) rename ext/{zoom.ext.php => zoom/main.php} (100%) diff --git a/contrib/autocomplete.ext.php b/contrib/autocomplete/main.php similarity index 100% rename from contrib/autocomplete.ext.php rename to contrib/autocomplete/main.php diff --git a/contrib/notes.ext.php b/contrib/notes/main.php similarity index 100% rename from contrib/notes.ext.php rename to contrib/notes/main.php diff --git a/contrib/rating.ext.php b/contrib/rating/main.php similarity index 100% rename from contrib/rating.ext.php rename to contrib/rating/main.php diff --git a/contrib/site_description.ext.php b/contrib/site_description/main.php similarity index 100% rename from contrib/site_description.ext.php rename to contrib/site_description/main.php diff --git a/ext/alias_editor.ext.php b/ext/alias_editor/main.php similarity index 100% rename from ext/alias_editor.ext.php rename to ext/alias_editor/main.php diff --git a/ext/bulk_add.ext.php b/ext/bulk_add/main.php similarity index 100% rename from ext/bulk_add.ext.php rename to ext/bulk_add/main.php diff --git a/ext/comment.ext.php b/ext/comment/main.php similarity index 100% rename from ext/comment.ext.php rename to ext/comment/main.php diff --git a/ext/downtime.ext.php b/ext/downtime/main.php similarity index 100% rename from ext/downtime.ext.php rename to ext/downtime/main.php diff --git a/ext/et.ext.php b/ext/et/main.php similarity index 100% rename from ext/et.ext.php rename to ext/et/main.php diff --git a/ext/ipban.ext.php b/ext/ipban/main.php similarity index 100% rename from ext/ipban.ext.php rename to ext/ipban/main.php diff --git a/ext/news.ext.php b/ext/news/main.php similarity index 100% rename from ext/news.ext.php rename to ext/news/main.php diff --git a/ext/regen_thumb.ext.php b/ext/regen_thumb/main.php similarity index 100% rename from ext/regen_thumb.ext.php rename to ext/regen_thumb/main.php diff --git a/ext/rss_images.ext.php b/ext/rss_images/main.php similarity index 100% rename from ext/rss_images.ext.php rename to ext/rss_images/main.php diff --git a/ext/tag_list.ext.php b/ext/tag_list/main.php similarity index 100% rename from ext/tag_list.ext.php rename to ext/tag_list/main.php diff --git a/ext/zoom.ext.php b/ext/zoom/main.php similarity index 100% rename from ext/zoom.ext.php rename to ext/zoom/main.php diff --git a/index.php b/index.php index 28f5ca12..2d90a631 100644 --- a/index.php +++ b/index.php @@ -20,7 +20,7 @@ EOD; exit; } -$files = array_merge(glob("core/*.php"), glob("core/*/*.php"), glob("ext/*.php")); +$files = array_merge(glob("core/*.php"), glob("core/*/*.php"), glob("ext/*/main.php")); foreach($files as $filename) { require_once $filename;