I hereby claim:
- I am Elsensee on github.
- I am olifantoliver (https://keybase.io/olifantoliver) on keybase.
- I have a public key whose fingerprint is 8065 1640 9DFB 19B1 55C9 5325 6493 DFF1 7BDF C945
To claim this, I am signing this object:
| <?php | |
| /** | |
| * | |
| * @package phpBB.de External Images as link | |
| * @copyright (c) 2015-2016 phpBB.de | |
| * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 | |
| * | |
| */ | |
| namespace phpbbde\externalimgaslink\event; |
| diff --git a/event/listener.php b/event/listener.php | |
| index 07bc2c4..818596d 100644 | |
| --- a/event/listener.php | |
| +++ b/event/listener.php | |
| @@ -67,6 +67,7 @@ class listener implements EventSubscriberInterface | |
| // 3.2 TextFormatter events (will only trigger in >=3.2) | |
| 'core.text_formatter_s9e_configure_after' => 'configure_textformatter', | |
| 'core.text_formatter_s9e_renderer_setup' => 'setup_textformatter_renderer', | |
| + 'core.text_formatter_s9e_parse_after' => 'legacy_replace', | |
| ); |
| $effects = array_filter(array_map(function ($effect) { | |
| return EffectCollection::getEffectById($effect); | |
| }, array_unique(func_get_args(), SORT_NUMERIC)), function ($effect) { | |
| return !is_null($effect); | |
| }); |
| <?php | |
| $root = $_SERVER['DOCUMENT_ROOT']; | |
| if (!file_exists($root . parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH)) && file_exists($root . '/app.php')) | |
| { | |
| include($root . '/app.php'); | |
| exit; | |
| } | |
| return false; |
I hereby claim:
To claim this, I am signing this object:
| diff --git a/phpBB/styles/prosilver/style.cfg b/phpBB/styles/prosilver/style.cfg | |
| index f1a34bc..33547c3 100644 | |
| --- a/phpBB/styles/prosilver/style.cfg | |
| +++ b/phpBB/styles/prosilver/style.cfg | |
| @@ -21,8 +21,8 @@ | |
| # General Information about this style | |
| name = prosilver | |
| copyright = © phpBB Limited, 2007 | |
| -style_version = 3.1.7 | |
| -phpbb_version = 3.1.7 |
| phpBB/styles/all/template/feed.xml.twig | 37 +++ | |
| phpBB/styles/prosilver/style.cfg | 4 +- | |
| phpBB/styles/prosilver/template/attachment.html | 79 +----- | |
| phpBB/styles/prosilver/template/bbcode.html | 39 ++- | |
| phpBB/styles/prosilver/template/captcha_recaptcha.html | 19 +- | |
| phpBB/styles/prosilver/template/faq_body.html | 4 +- | |
| phpBB/styles/prosilver/template/forum_fn.js | 24 +- | |
| phpBB/styles/prosilver/template/forumlist_body.html | 61 ++-- | |
| phpBB/styles/prosilver/template/jumpbox.html | 35 ++- | |
| phpBB/styles/prosilver/template/mcp_forum.html | 41 +-- |
| diff --git a/phpBB/styles/all/template/feed.xml.twig b/phpBB/styles/all/template/feed.xml.twig | |
| new file mode 100644 | |
| index 0000000..91467c6 | |
| --- /dev/null | |
| +++ b/phpBB/styles/all/template/feed.xml.twig | |
| @@ -0,0 +1,37 @@ | |
| +<?xml version="1.0" encoding="UTF-8"?> | |
| +<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="{{ FEED_LANG }}"> | |
| + <link rel="self" type="application/atom+xml" href="{{ SELF_LINK }}" /> | |
| + |
| <?php | |
| /** | |
| * | |
| * @package Support Toolkit - Reparse BBCode | |
| * @version $Id$ | |
| * @copyright (c) 2009 phpBB Group | |
| * @license http://opensource.org/licenses/gpl-license.php GNU Public License | |
| * | |
| */ |
| <?php | |
| define('OLD_ID', 13); | |
| define('NEW_ID', 14); | |
| define('LIKE_WHAT', '[light'); | |
| /** | |
| * @ignore | |
| */ | |
| define('IN_PHPBB', true); |