This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* | |
* @package phpBB3 | |
* @version $Id$ | |
* @copyright (c) 2008 evil3 | |
* @license http://opensource.org/licenses/gpl-license.php GNU Public License | |
* | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* | |
* notebbcode (Prime Note Bbcode) - extension | |
* | |
* @copyright (c) 2016 3Di (based on the hard work of Matt Friedman/VSE) | |
* | |
* @license GNU General Public License, version 2 (GPL-2.0) | |
* | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* | |
* notebbcode (Prime Note Bbcode) - extension | |
* | |
* @copyright (c) 2016 3Di | |
* | |
* (based on the hard work of Matt Friedman/VSE) | |
* | |
* @license GNU General Public License, version 2 (GPL-2.0) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* | |
* notebbcode (Prime Note Bbcode) 1.0.0-b3 - extension | |
* | |
* @copyright (c) 2016 3Di | |
* | |
* (migration based on the hard work of Matt Friedman/VSE) | |
* @license GNU General Public License, version 2 (GPL-2.0) | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* | |
* notebbcode (Prime Note Bbcode) 1.0.0-b3 - extension | |
* | |
* @copyright (c) 2016 3Di | |
* | |
* (migration based on the hard work of Matt Friedman/VSE) | |
* @license GNU General Public License, version 2 (GPL-2.0) | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"version-check": | |
{ | |
"host": "github.com", | |
"directory": "/3D-I/online-since/blob/master", | |
"filename": "onlinesince-vcheck.json" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"stable": { | |
"1.0": { | |
"current": "1.0.1", | |
"download": "https://github.com/3D-I/online-since/archive/RC2.zip", | |
"announcement": "", | |
"eol": null, | |
"security": false | |
} | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/*** | |
* Usage: Download and unzip the file, upload it to your Board's root (i.e.: www.mydomain.com/phpBB3/) | |
* Point your browser to i.e.: www.mydomain.com/phpBB3/modission_reset_3111.php) and follow instructions. | |
* | |
* Version 2.2.6 (3Di in 17-Jul-2017 for phpBB 3.1.11) - Oyabun1 2015 | |
* | |
* This script is free software. It comes without any warranty. | |
* license http://opensource.org/licenses/GPL-2.0 GNU General Public License v2. | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// hexa code: EF BB BF | |
// displayed in browsers with:  - UTF8 files | |
static function remove_bom($str = '') | |
{ | |
if (substr($str, 0, 3) == pack('CCC', 0xef, 0xbb, 0xbf)) | |
{ | |
$str = substr($str, 3); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* | |
* @package phpBB 3.1.8- Available Board-wide template variables | |
* @copyright (c) 2016 3Di (Marco T.) | |
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 | |
* | |
*/ | |
// The following are all _common_ variables that may be used at any point in a template. |
OlderNewer