diff options
author | Andreas Fischer <bantu@phpbb.com> | 2013-07-14 21:11:14 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2013-10-10 23:26:03 +0200 |
commit | 21eae92c27d22a96f847c01770b18f3d00b5aabd (patch) | |
tree | 273b47571ef4f7cc1db719e27c1d98b318a269c9 /phpBB/phpbb | |
parent | 94b49d8a925e4bc7f10cbcf117ba81b071019b73 (diff) | |
download | forums-21eae92c27d22a96f847c01770b18f3d00b5aabd.tar forums-21eae92c27d22a96f847c01770b18f3d00b5aabd.tar.gz forums-21eae92c27d22a96f847c01770b18f3d00b5aabd.tar.bz2 forums-21eae92c27d22a96f847c01770b18f3d00b5aabd.tar.xz forums-21eae92c27d22a96f847c01770b18f3d00b5aabd.zip |
[ticket/11703] Add effectively_installed().
PHPBB3-11703
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r-- | phpBB/phpbb/db/migration/data/v310/allow_cdn.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/data/v310/allow_cdn.php b/phpBB/phpbb/db/migration/data/v310/allow_cdn.php index 2570998643..0b79ac77f9 100644 --- a/phpBB/phpbb/db/migration/data/v310/allow_cdn.php +++ b/phpBB/phpbb/db/migration/data/v310/allow_cdn.php @@ -11,6 +11,11 @@ namespace phpbb\db\migration\data\v310; class allow_cdn extends phpbb_db_migration { + public function effectively_installed() + { + return isset($this->config['allow_cdn']); + } + static public function depends_on() { return array( |