aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2013-07-19 20:49:24 +0200
committerMarc Alexander <admin@m-a-styles.de>2013-09-14 13:55:28 +0200
commit9b24fda5cd1f6e85c536dc2bc3e5f1bbdef5b7c2 (patch)
tree9aa7c642dd6cd1638ac1d864600c5285d8c8e23e
parent2e453eb2cb682031d7e521d23c3904c8dfeef70c (diff)
downloadforums-9b24fda5cd1f6e85c536dc2bc3e5f1bbdef5b7c2.tar
forums-9b24fda5cd1f6e85c536dc2bc3e5f1bbdef5b7c2.tar.gz
forums-9b24fda5cd1f6e85c536dc2bc3e5f1bbdef5b7c2.tar.bz2
forums-9b24fda5cd1f6e85c536dc2bc3e5f1bbdef5b7c2.tar.xz
forums-9b24fda5cd1f6e85c536dc2bc3e5f1bbdef5b7c2.zip
[feature/passwords] Move files after namespacing changes
PHPBB3-11610
-rw-r--r--phpBB/phpbb/crypto/driver/base.php (renamed from phpBB/includes/crypto/driver/base.php)0
-rw-r--r--phpBB/phpbb/crypto/driver/bcrypt.php (renamed from phpBB/includes/crypto/driver/bcrypt.php)0
-rw-r--r--phpBB/phpbb/crypto/driver/bcrypt_2y.php (renamed from phpBB/includes/crypto/driver/bcrypt_2y.php)0
-rw-r--r--phpBB/phpbb/crypto/driver/helper.php (renamed from phpBB/includes/crypto/driver/helper.php)0
-rw-r--r--phpBB/phpbb/crypto/driver/interface.php (renamed from phpBB/includes/crypto/driver/interface.php)0
-rw-r--r--phpBB/phpbb/crypto/driver/phpass.php (renamed from phpBB/includes/crypto/driver/phpass.php)0
-rw-r--r--phpBB/phpbb/crypto/driver/salted_md5.php (renamed from phpBB/includes/crypto/driver/salted_md5.php)0
-rw-r--r--phpBB/phpbb/crypto/helper.php (renamed from phpBB/includes/crypto/helper.php)0
-rw-r--r--phpBB/phpbb/crypto/manager.php (renamed from phpBB/includes/crypto/manager.php)0
-rw-r--r--tests/crypto/manager_test.php10
10 files changed, 5 insertions, 5 deletions
diff --git a/phpBB/includes/crypto/driver/base.php b/phpBB/phpbb/crypto/driver/base.php
index c134122174..c134122174 100644
--- a/phpBB/includes/crypto/driver/base.php
+++ b/phpBB/phpbb/crypto/driver/base.php
diff --git a/phpBB/includes/crypto/driver/bcrypt.php b/phpBB/phpbb/crypto/driver/bcrypt.php
index ad5a8036c3..ad5a8036c3 100644
--- a/phpBB/includes/crypto/driver/bcrypt.php
+++ b/phpBB/phpbb/crypto/driver/bcrypt.php
diff --git a/phpBB/includes/crypto/driver/bcrypt_2y.php b/phpBB/phpbb/crypto/driver/bcrypt_2y.php
index 8bce171a25..8bce171a25 100644
--- a/phpBB/includes/crypto/driver/bcrypt_2y.php
+++ b/phpBB/phpbb/crypto/driver/bcrypt_2y.php
diff --git a/phpBB/includes/crypto/driver/helper.php b/phpBB/phpbb/crypto/driver/helper.php
index 308ee7dce2..308ee7dce2 100644
--- a/phpBB/includes/crypto/driver/helper.php
+++ b/phpBB/phpbb/crypto/driver/helper.php
diff --git a/phpBB/includes/crypto/driver/interface.php b/phpBB/phpbb/crypto/driver/interface.php
index 9686aa33de..9686aa33de 100644
--- a/phpBB/includes/crypto/driver/interface.php
+++ b/phpBB/phpbb/crypto/driver/interface.php
diff --git a/phpBB/includes/crypto/driver/phpass.php b/phpBB/phpbb/crypto/driver/phpass.php
index 4868464d73..4868464d73 100644
--- a/phpBB/includes/crypto/driver/phpass.php
+++ b/phpBB/phpbb/crypto/driver/phpass.php
diff --git a/phpBB/includes/crypto/driver/salted_md5.php b/phpBB/phpbb/crypto/driver/salted_md5.php
index c5a8345453..c5a8345453 100644
--- a/phpBB/includes/crypto/driver/salted_md5.php
+++ b/phpBB/phpbb/crypto/driver/salted_md5.php
diff --git a/phpBB/includes/crypto/helper.php b/phpBB/phpbb/crypto/helper.php
index 9c802b3c01..9c802b3c01 100644
--- a/phpBB/includes/crypto/helper.php
+++ b/phpBB/phpbb/crypto/helper.php
diff --git a/phpBB/includes/crypto/manager.php b/phpBB/phpbb/crypto/manager.php
index 753a86ae84..753a86ae84 100644
--- a/phpBB/includes/crypto/manager.php
+++ b/phpBB/phpbb/crypto/manager.php
diff --git a/tests/crypto/manager_test.php b/tests/crypto/manager_test.php
index 2b6e1b311e..ba13c9c8ad 100644
--- a/tests/crypto/manager_test.php
+++ b/tests/crypto/manager_test.php
@@ -8,11 +8,11 @@
*/
require_once dirname(__FILE__) . '/../mock/container_builder.php';
-require_once dirname(__FILE__) . '/../../phpBB/includes/crypto/driver/bcrypt.php';
-require_once dirname(__FILE__) . '/../../phpBB/includes/crypto/driver/bcrypt_2y.php';
-require_once dirname(__FILE__) . '/../../phpBB/includes/crypto/driver/salted_md5.php';
-require_once dirname(__FILE__) . '/../../phpBB/includes/crypto/driver/phpass.php';
-require_once dirname(__FILE__) . '/../../phpBB/includes/crypto/driver/helper.php';
+require_once dirname(__FILE__) . '/../../phpBB/phpbb/crypto/driver/bcrypt.php';
+require_once dirname(__FILE__) . '/../../phpBB/phpbb/crypto/driver/bcrypt_2y.php';
+require_once dirname(__FILE__) . '/../../phpBB/phpbb/crypto/driver/salted_md5.php';
+require_once dirname(__FILE__) . '/../../phpBB/phpbb/crypto/driver/phpass.php';
+require_once dirname(__FILE__) . '/../../phpBB/phpbb/crypto/driver/helper.php';
class phpbb_crypto_manager_test extends PHPUnit_Framework_TestCase
{