[fix/folders] move files up one level

Root folder now equals the root folder of the extension.
This commit is contained in:
Marc Alexander
2013-10-29 18:19:15 +01:00
parent 6695373e0b
commit 0ed406ae04
268 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
<?php
/**
*
* @package Board3 Portal v2
* @copyright (c) Board3 Group ( www.board3.de )
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
/**
* @package mod_version_check
*/
if (!defined('IN_PHPBB'))
{
exit;
}
class board3_portal_check_version
{
public function version()
{
global $config, $phpbb_root_path, $phpEx;
return array(
'author' => 'Saint_hh',
'title' => 'Board3 Portal',
'tag' => 'board3_portal_v2_dev',
'version' => $config['board3_portal_version'],
'file' => array('board3.de', 'updatecheck', 'board3_portal.xml'),
);
}
}