1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/12769] Properly include FA

This commit is contained in:
Michael Miday
2015-09-15 22:23:24 +02:00
parent eab8a12fb8
commit 956723af0e
5 changed files with 54 additions and 7 deletions

View File

@@ -0,0 +1,29 @@
<?php
/**
*
* This file is part of the phpBB Forum Software package.
*
* @copyright (c) phpBB Limited <https://www.phpbb.com>
* @license GNU General Public License, version 2 (GPL-2.0)
*
* For full copyright and license information, please see
* the docs/CREDITS.txt file.
*
*/
namespace phpbb\db\migration\data\v320;
class font_awesome_update extends \phpbb\db\migration\migration
{
public function effectively_installed()
{
return isset($this->config['load_font_awesome_url']);
}
public function update_data()
{
return array(
array('config.add', array('load_font_awesome_url', 'https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css')),
);
}
}