aboutsummaryrefslogtreecommitdiffstats
path: root/tests/extension/ext
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2011-10-14 01:30:50 +0200
committerNils Adermann <naderman@naderman.de>2011-10-14 01:30:50 +0200
commit4fb9f2101de8de8dc08ef0a1c44f81c5443f3d7a (patch)
tree3620bccb7d14092a77a6517f30cc91809aeae4bb /tests/extension/ext
parentf53892c838dfa3638a47b60b394a948db4873466 (diff)
downloadforums-4fb9f2101de8de8dc08ef0a1c44f81c5443f3d7a.tar
forums-4fb9f2101de8de8dc08ef0a1c44f81c5443f3d7a.tar.gz
forums-4fb9f2101de8de8dc08ef0a1c44f81c5443f3d7a.tar.bz2
forums-4fb9f2101de8de8dc08ef0a1c44f81c5443f3d7a.tar.xz
forums-4fb9f2101de8de8dc08ef0a1c44f81c5443f3d7a.zip
[feature/extension-manager] Support extensions in subdirectories of ext/
PHPBB3-10323
Diffstat (limited to 'tests/extension/ext')
-rw-r--r--tests/extension/ext/moo/feature_class.php5
-rw-r--r--tests/extension/ext/vendor/moo/ext.php (renamed from tests/extension/ext/moo/ext.php)2
-rw-r--r--tests/extension/ext/vendor/moo/feature_class.php5
3 files changed, 6 insertions, 6 deletions
diff --git a/tests/extension/ext/moo/feature_class.php b/tests/extension/ext/moo/feature_class.php
deleted file mode 100644
index bf7ba40d84..0000000000
--- a/tests/extension/ext/moo/feature_class.php
+++ /dev/null
@@ -1,5 +0,0 @@
-<?php
-
-class phpbb_ext_moo_feature_class
-{
-}
diff --git a/tests/extension/ext/moo/ext.php b/tests/extension/ext/vendor/moo/ext.php
index 8b534380f2..e0ac1a22cc 100644
--- a/tests/extension/ext/moo/ext.php
+++ b/tests/extension/ext/vendor/moo/ext.php
@@ -1,6 +1,6 @@
<?php
-class phpbb_ext_moo_ext extends phpbb_extension_base
+class phpbb_ext_vendor_moo_ext extends phpbb_extension_base
{
static public $purged;
diff --git a/tests/extension/ext/vendor/moo/feature_class.php b/tests/extension/ext/vendor/moo/feature_class.php
new file mode 100644
index 0000000000..c3bcc4451c
--- /dev/null
+++ b/tests/extension/ext/vendor/moo/feature_class.php
@@ -0,0 +1,5 @@
+<?php
+
+class phpbb_ext_vendor_moo_feature_class
+{
+}