├── tests ├── tmp │ └── .gitkeep ├── compress │ ├── archive │ │ └── .gitkeep │ ├── extract │ │ └── .gitkeep │ └── fixtures │ │ ├── 1.txt │ │ ├── dir │ │ ├── 2.txt │ │ ├── 3.txt │ │ └── subdir │ │ │ └── 4.txt │ │ ├── archive.zip │ │ ├── archive.tar.gz │ │ └── archive.tar.bz2 ├── upload │ └── fixture │ │ ├── copies │ │ └── .gitkeep │ │ ├── bmp │ │ ├── gif │ │ ├── iff │ │ ├── jp2 │ │ ├── jpg │ │ ├── jpx │ │ ├── png │ │ ├── psd │ │ ├── tif │ │ ├── wbmp │ │ ├── tif_msb │ │ ├── iff_maya │ │ ├── tif_compressed │ │ └── txt ├── functional │ └── fixtures │ │ ├── files │ │ ├── empty.png │ │ ├── valid.jpg │ │ ├── too-large.png │ │ └── illegal-extension.bif │ │ └── ext │ │ └── foo │ │ ├── foo │ │ ├── config │ │ │ ├── routing.yml │ │ │ ├── resource.yml │ │ │ └── services.yml │ │ ├── ext.php │ │ ├── styles │ │ │ └── prosilver │ │ │ │ └── template │ │ │ │ └── event │ │ │ │ ├── navbar_header_quick_links_after.html │ │ │ │ └── index_body_forumlist_body_before.html │ │ └── controller │ │ │ └── controller.php │ │ └── bar │ │ ├── ext.php │ │ ├── language │ │ └── en │ │ │ ├── foo_global.php │ │ │ └── permissions_foo.php │ │ └── styles │ │ └── prosilver │ │ └── template │ │ ├── event │ │ ├── navbar_header_quick_links_after.html │ │ └── index_body_forumlist_body_before.html │ │ ├── foo_bar_body.html │ │ ├── foobar.html │ │ ├── foobar_mcp.html │ │ └── redirect_body.html ├── template │ ├── templates │ │ ├── child_only.css │ │ ├── subdir │ │ │ ├── parent_only.js │ │ │ ├── subsubdir │ │ │ │ └── parent_only.js │ │ │ └── variable.html │ │ ├── include_loop1.html │ │ ├── include_loop2.html │ │ ├── include_loop3.html │ │ ├── variable.html │ │ ├── child_only.html │ │ ├── loop_include1.html │ │ ├── parent_and_child.html │ │ ├── include.html │ │ ├── invalid │ │ │ ├── endif_without_if.html │ │ │ └── output │ │ │ │ ├── unknown_tag.html │ │ │ │ ├── endif_without_if.html │ │ │ │ └── include_nonexistent_file.html │ │ ├── trivial.html │ │ ├── include_variable.html │ │ ├── loop_include1_twig.html │ │ ├── extension_config_test.html │ │ ├── child_only.js │ │ ├── define_error.html │ │ ├── parent_and_child.js │ │ ├── include_variables.html │ │ ├── avatar_user.html │ │ ├── avatar_group.html │ │ ├── lang.html │ │ ├── extension_icon_test.html │ │ ├── include_define.html │ │ ├── define_include.html │ │ ├── _dummy_include.php.inc │ │ ├── if_nested_tags.html │ │ ├── extension_username_test.html │ │ ├── variable_spacing.html │ │ ├── loop_include.html │ │ ├── events.html │ │ ├── loop_reuse.html │ │ ├── twig_parent.html │ │ ├── loop_nested_include.html │ │ ├── twig.html │ │ ├── loop_include_twig.html │ │ ├── include_loop_define.html │ │ ├── loop_nested_include1.html │ │ ├── loop_nested_include_twig.html │ │ ├── loop_nested_include1_twig.html │ │ ├── loop_reuse_twig.html │ │ ├── loop_nested2.html │ │ ├── include_loop.html │ │ ├── loop_nested2_twig.html │ │ ├── lang_twig.html │ │ ├── define_include2.html │ │ ├── include_define_variable.html │ │ ├── define_advanced.html │ │ ├── loop_nested_multilevel_ref.html │ │ ├── loop_expressions_twig2.html │ │ ├── loop_expressions.html │ │ ├── loop_expressions_twig.html │ │ ├── loop_nested_multilevel_ref_twig.html │ │ ├── svg │ │ │ ├── pencil.svg │ │ │ └── phone.svg │ │ ├── includecss_twig.html │ │ ├── includecss.html │ │ ├── basic.html │ │ ├── loop_nested_deep_multilevel_ref_twig.html │ │ ├── loop.html │ │ ├── loop_nested_deep_multilevel_ref.html │ │ ├── loop_twig.html │ │ ├── loop_underscore.html │ │ ├── loop_nested_twig.html │ │ ├── loop_underscore_twig.html │ │ ├── if.html │ │ └── loop_vars.html │ ├── parent_templates │ │ ├── parent_only.css │ │ ├── parent_only.html │ │ ├── parent_and_child.html │ │ ├── parent_and_child.js │ │ └── parent_only.js │ ├── ext │ │ └── include │ │ │ └── css │ │ │ └── styles │ │ │ └── all │ │ │ └── theme │ │ │ ├── test.css │ │ │ └── child_only.css │ └── datasets │ │ ├── event_inheritance │ │ ├── styles │ │ │ ├── silver │ │ │ │ └── template │ │ │ │ │ ├── event_two.html │ │ │ │ │ └── event_test.html │ │ │ └── silver_inherit │ │ │ │ └── template │ │ │ │ └── event_test.html │ │ └── ext │ │ │ ├── zeta │ │ │ └── styles │ │ │ │ └── all │ │ │ │ └── template │ │ │ │ └── event │ │ │ │ └── test.html │ │ │ ├── kappa │ │ │ └── styles │ │ │ │ ├── all │ │ │ │ └── template │ │ │ │ │ └── event │ │ │ │ │ └── test.html │ │ │ │ ├── silver │ │ │ │ └── template │ │ │ │ │ └── event │ │ │ │ │ └── test.html │ │ │ │ └── silver_inherit │ │ │ │ └── template │ │ │ │ └── event │ │ │ │ └── test.html │ │ │ └── omega │ │ │ └── styles │ │ │ ├── all │ │ │ └── template │ │ │ │ └── event │ │ │ │ └── test.html │ │ │ └── silver │ │ │ └── template │ │ │ └── event │ │ │ ├── two.html │ │ │ └── test.html │ │ └── ext_trivial │ │ ├── styles │ │ └── silver │ │ │ └── template │ │ │ ├── event_simple.html │ │ │ ├── event_universal.html │ │ │ ├── variable_spacing.html │ │ │ ├── event_loop.html │ │ │ └── event_subloop.html │ │ └── ext │ │ └── trivial │ │ └── styles │ │ ├── silver │ │ └── template │ │ │ └── event │ │ │ └── simple.html │ │ └── all │ │ └── template │ │ └── event │ │ ├── universal.html │ │ ├── test_event_loop.html │ │ ├── event_variable_spacing.html │ │ └── test_event_subloop.html ├── event │ └── fixtures │ │ ├── adm │ │ └── style │ │ │ └── acp_bbcodes.html │ │ ├── none.test │ │ ├── default.test │ │ └── extra_description.test ├── extension │ ├── ext │ │ ├── vendor2 │ │ │ ├── foo │ │ │ │ ├── type │ │ │ │ │ ├── dummy │ │ │ │ │ │ └── empty.txt │ │ │ │ │ └── alternative.php │ │ │ │ ├── a_class.php │ │ │ │ ├── b_class.php │ │ │ │ ├── typewrong │ │ │ │ │ └── error.php │ │ │ │ ├── acp │ │ │ │ │ ├── a_module.php │ │ │ │ │ ├── fail_module.php │ │ │ │ │ └── a_info.php │ │ │ │ ├── mcp │ │ │ │ │ ├── a_module.php │ │ │ │ │ └── a_info.php │ │ │ │ ├── sub │ │ │ │ │ └── type │ │ │ │ │ │ └── alternative.php │ │ │ │ └── ext.php │ │ │ └── bar │ │ │ │ ├── acp │ │ │ │ ├── a_module.php │ │ │ │ └── a_info.php │ │ │ │ ├── migrations │ │ │ │ ├── bar.php │ │ │ │ └── migration.php │ │ │ │ └── ext.php │ │ ├── vendor4 │ │ │ └── bar │ │ │ │ └── styles │ │ │ │ └── all │ │ │ │ └── template │ │ │ │ └── foobar_body.html │ │ ├── vendor3 │ │ │ ├── bar │ │ │ │ ├── styles │ │ │ │ │ └── prosilver │ │ │ │ │ │ └── template │ │ │ │ │ │ └── foobar_body.html │ │ │ │ ├── my │ │ │ │ │ └── hidden_class.php │ │ │ │ └── ext.php │ │ │ └── foo │ │ │ │ └── ext.php │ │ ├── vendor │ │ │ └── moo │ │ │ │ ├── feature_class.php │ │ │ │ └── ext.php │ │ ├── barfoo │ │ │ └── ext.php │ │ └── vendor5 │ │ │ └── foo │ │ │ └── ext.php │ ├── phpbb │ │ └── default │ │ │ └── implementation.php │ └── fixtures │ │ └── extensions.xml ├── text_processing │ ├── tickets_data │ │ ├── PHPBB3-15163.txt │ │ ├── PHPBB3-16309.txt │ │ ├── PHPBB3-15016.txt │ │ ├── PHPBB3-15348.txt │ │ ├── PHPBB3-11742.txt │ │ ├── PHPBB3-14663.txt │ │ ├── PHPBB3-15261.html │ │ ├── PHPBB3-15261.txt │ │ ├── PHPBB3-16074.txt │ │ ├── PHPBB3-16252.txt │ │ ├── PHPBB3-16252.html │ │ ├── PHPBB3-7275.txt │ │ ├── PHPBB3-8419.txt │ │ ├── PHPBB3-14405.txt │ │ ├── PHPBB3-3981.txt │ │ ├── PHPBB3-7187.txt │ │ ├── PHPBB3-13921.txt │ │ ├── PHPBB3-14846.txt │ │ ├── PHPBB3-16053.txt │ │ ├── PHPBB3-9377.txt │ │ ├── PHPBB3-11153.html │ │ ├── PHPBB3-11153.txt │ │ ├── PHPBB3-13425.txt │ │ ├── PHPBB3-15008.html │ │ ├── PHPBB3-15008.txt │ │ ├── PHPBB3-10122.txt │ │ ├── PHPBB3-12221.txt │ │ ├── PHPBB3-14663.html │ │ ├── PHPBB3-16053.html │ │ ├── PHPBB3-13641.txt │ │ ├── PHPBB3-14260.txt │ │ ├── PHPBB3-14706.txt │ │ ├── PHPBB3-10002.txt │ │ ├── PHPBB3-12195.txt │ │ ├── PHPBB3-14740.txt │ │ ├── PHPBB3-10122.html │ │ ├── PHPBB3-13641.html │ │ ├── PHPBB3-16074.html │ │ ├── PHPBB3-3981.html │ │ ├── PHPBB3-9073.txt │ │ ├── PHPBB3-9377.html │ │ ├── PHPBB3-14405.html │ │ ├── PHPBB3-14790.txt │ │ ├── PHPBB3-16309.html │ │ ├── PHPBB3-12195.html │ │ ├── PHPBB3-15163.html │ │ ├── PHPBB3-12221.html │ │ ├── PHPBB3-8419.html │ │ ├── PHPBB3-14706.html │ │ ├── PHPBB3-10587.txt │ │ ├── PHPBB3-11742.html │ │ ├── PHPBB3-7275.html │ │ ├── PHPBB3-10268.txt │ │ ├── PHPBB3-14260.html │ │ ├── PHPBB3-13921.html │ │ ├── PHPBB3-9791.txt │ │ ├── PHPBB3-10002.html │ │ ├── PHPBB3-14846.html │ │ ├── PHPBB3-10425.txt │ │ ├── PHPBB3-13425.html │ │ ├── PHPBB3-9073.html │ │ ├── PHPBB3-10587.html │ │ ├── PHPBB3-14790.html │ │ ├── PHPBB3-9791.html │ │ ├── PHPBB3-15348.html │ │ ├── PHPBB3-7187.html │ │ ├── PHPBB3-15016.html │ │ ├── PHPBB3-15261.xml │ │ ├── PHPBB3-14740.html │ │ ├── PHPBB3-9073.xml │ │ ├── PHPBB3-16252.before.php │ │ ├── PHPBB3-15008.before.php │ │ ├── PHPBB3-10268.html │ │ ├── PHPBB3-10989.txt │ │ ├── PHPBB3-16252.after.php │ │ └── PHPBB3-7275.after.php │ └── fixtures │ │ └── empty.xml ├── fixtures │ ├── config.php │ ├── config_other.php │ └── empty.xml ├── di │ └── fixtures │ │ ├── config │ │ ├── test │ │ │ └── config.yml │ │ └── production │ │ │ └── config.yml │ │ ├── ext │ │ └── vendor │ │ │ ├── available │ │ │ └── config │ │ │ │ └── services.yml │ │ │ ├── enabled-3 │ │ │ └── config │ │ │ │ └── services.yml │ │ │ ├── disabled │ │ │ └── config │ │ │ │ └── test │ │ │ │ └── container │ │ │ │ └── environment.yml │ │ │ ├── enabled-2 │ │ │ └── config │ │ │ │ └── test │ │ │ │ └── container │ │ │ │ └── environment.yml │ │ │ ├── enabled │ │ │ └── config │ │ │ │ └── default │ │ │ │ └── container │ │ │ │ └── environment.yml │ │ │ └── enabled_4 │ │ │ └── environment.yml │ │ ├── other_config │ │ ├── test │ │ │ └── config.yml │ │ └── production │ │ │ └── config.yml │ │ └── config.php ├── class_loader │ └── phpbb │ │ ├── dir2 │ │ └── dir2.php │ │ ├── class_name.php │ │ └── dir │ │ ├── class_name.php │ │ └── subdir │ │ └── class_name.php ├── mimetype │ ├── fixtures │ │ └── jpg │ └── incorrect_guesser.php ├── console │ ├── fixtures │ │ ├── png.png │ │ └── txt.txt │ └── cron │ │ ├── tasks │ │ ├── simple_ready.php │ │ └── simple_not_ready.php │ │ └── fixtures │ │ └── config.xml ├── controller │ ├── config │ │ ├── services.yml │ │ └── test │ │ │ └── routing │ │ │ └── environment.yml │ ├── ext │ │ └── vendor2 │ │ │ ├── bar │ │ │ ├── config │ │ │ │ ├── services.yml │ │ │ │ └── test │ │ │ │ │ └── routing │ │ │ │ │ └── environment.yml │ │ │ └── controller.php │ │ │ └── foo │ │ │ ├── config │ │ │ ├── services.yml │ │ │ ├── routing_2.yml │ │ │ └── routing.yml │ │ │ └── subfolder │ │ │ └── config │ │ │ └── routing.yml │ └── phpbb │ │ └── controller │ │ └── foo.php ├── mention │ └── fixtures │ │ └── services_mention.yml ├── version │ └── fixture │ │ └── 30x.txt ├── dbal │ └── fixtures │ │ ├── migrator_config_text.xml │ │ └── config.xml ├── text_reparser │ └── fixtures │ │ └── config_text.xml ├── cron │ └── tasks │ │ ├── simple_ready.php │ │ ├── simple_not_runnable.php │ │ └── simple_should_not_run.php ├── pagination │ └── config │ │ └── test │ │ └── routing │ │ └── environment.yml ├── lock │ └── fixtures │ │ └── config.xml ├── notification │ └── fixtures │ │ └── notification.xml ├── tree │ └── fixtures │ │ └── phpbb_forums.xml ├── acp_board │ └── auth_provider │ │ └── invalid.php ├── cache │ └── fixtures │ │ └── config.xml ├── config │ └── fixtures │ │ ├── config.xml │ │ └── config_text.xml ├── log │ └── fixtures │ │ └── empty_log.xml ├── mock │ └── controller_helper.php ├── wrapper │ └── phpbb_php_ini_fake.php ├── auth │ └── phpbb_not_a_token.php ├── avatar │ └── driver │ │ ├── barfoo.php │ │ └── foobar.php ├── groupposition │ └── fixtures │ │ └── legend.xml └── installer │ └── mocks │ └── test_installer_module.php ├── phpBB ├── develop │ ├── blank.gif │ ├── blank.jpg │ ├── test.gif │ ├── collect_cache_stats.sh │ └── set_permissions.sh ├── vendor-ext │ └── .git-keep ├── composer-ext.json ├── composer-ext.lock ├── styles │ ├── prosilver │ │ ├── theme │ │ │ ├── index.htm │ │ │ ├── images │ │ │ │ ├── index.htm │ │ │ │ ├── no_avatar.gif │ │ │ │ └── plupload │ │ │ │ │ ├── done.gif │ │ │ │ │ ├── error.gif │ │ │ │ │ └── throbber.gif │ │ │ ├── en │ │ │ │ └── stylesheet.css │ │ │ └── tweaks.css │ │ ├── template │ │ │ ├── index.htm │ │ │ ├── ucp_pm_message_footer.html │ │ │ ├── mcp_footer.html │ │ │ ├── posting_body.html │ │ │ ├── mcp_message.html │ │ │ ├── login_body_oauth.html │ │ │ ├── profilefields │ │ │ │ ├── text.html │ │ │ │ ├── url.html │ │ │ │ ├── int.html │ │ │ │ ├── string.html │ │ │ │ └── dropdown.html │ │ │ ├── ucp_footer.html │ │ │ ├── captcha_incomplete.html │ │ │ ├── ucp_profile_avatar.html │ │ │ ├── viewonline_whois.html │ │ │ └── ucp_auth_link.html │ │ └── imgs │ │ │ └── svg │ │ │ ├── arrow-right-bold.svg │ │ │ ├── star.svg │ │ │ ├── file-document-outline.svg │ │ │ ├── toggle-on.svg │ │ │ ├── file-document-box-outline.svg │ │ │ ├── file-document-box-multiple-outline.svg │ │ │ ├── comment-text-outline.svg │ │ │ ├── lock.svg │ │ │ └── info-variant.svg │ └── all │ │ ├── template │ │ ├── macros │ │ │ ├── forms │ │ │ │ ├── dimension.twig │ │ │ │ ├── radio_buttons.twig │ │ │ │ └── textarea.twig │ │ │ ├── icons │ │ │ │ ├── png.twig │ │ │ │ ├── font.twig │ │ │ │ └── svg.twig │ │ │ └── avatar.twig │ │ └── cron.html │ │ └── imgs │ │ └── svg │ │ └── 404.svg ├── install │ ├── .htaccess │ ├── schemas │ │ └── index.htm │ ├── convertors │ │ └── index.htm │ ├── index.html │ └── phpinfo.php ├── includes │ ├── utf │ │ └── data │ │ │ ├── search_indexer_19.php │ │ │ ├── search_indexer_26.php │ │ │ ├── search_indexer_64.php │ │ │ ├── search_indexer_84.php │ │ │ ├── search_indexer_9.php │ │ │ └── case_fold_s.php │ └── index.htm ├── config │ ├── installer │ │ ├── config.yml │ │ ├── routing │ │ │ └── environment.yml │ │ └── container │ │ │ ├── environment.yml │ │ │ └── parameters.yml │ ├── production │ │ ├── config.yml │ │ ├── routing │ │ │ └── environment.yml │ │ └── container │ │ │ ├── services.yml │ │ │ ├── parameters.yml │ │ │ └── environment.yml │ ├── default │ │ ├── config.yml │ │ ├── container │ │ │ ├── services_php.yml │ │ │ ├── services_assets.yml │ │ │ ├── services_posting.yml │ │ │ ├── services_finder.yml │ │ │ ├── services_twig_extensions.yml │ │ │ ├── services_module.yml │ │ │ ├── services_filesystem.yml │ │ │ └── services_updater.yml │ │ └── routing │ │ │ ├── cron.yml │ │ │ ├── help.yml │ │ │ └── storage.yml │ ├── test │ │ ├── routing │ │ │ └── environment.yml │ │ ├── container │ │ │ ├── parameters.yml │ │ │ ├── services.yml │ │ │ └── environment.yml │ │ └── config.yml │ └── development │ │ ├── routing │ │ └── environment.yml │ │ └── container │ │ ├── services.yml │ │ ├── parameters.yml │ │ └── environment.yml ├── install_new │ └── .htaccess ├── images │ ├── spacer.gif │ ├── icons │ │ ├── misc │ │ │ ├── fire.gif │ │ │ ├── heart.gif │ │ │ ├── star.gif │ │ │ ├── thinking.gif │ │ │ ├── radioactive.gif │ │ │ └── index.htm │ │ ├── smile │ │ │ ├── info.gif │ │ │ ├── alert.gif │ │ │ ├── mrgreen.gif │ │ │ ├── question.gif │ │ │ ├── redface.gif │ │ │ └── index.htm │ │ └── index.htm │ ├── smilies │ │ ├── icon_cry.gif │ │ ├── icon_eek.gif │ │ ├── icon_lol.gif │ │ ├── icon_mad.gif │ │ ├── icon_arrow.gif │ │ ├── icon_cool.gif │ │ ├── icon_e_sad.gif │ │ ├── icon_evil.gif │ │ ├── icon_idea.gif │ │ ├── icon_razz.gif │ │ ├── icon_e_geek.gif │ │ ├── icon_e_smile.gif │ │ ├── icon_e_ugeek.gif │ │ ├── icon_e_wink.gif │ │ ├── icon_exclaim.gif │ │ ├── icon_mrgreen.gif │ │ ├── icon_neutral.gif │ │ ├── icon_question.gif │ │ ├── icon_redface.gif │ │ ├── icon_rolleyes.gif │ │ ├── icon_twisted.gif │ │ ├── icon_e_biggrin.gif │ │ ├── icon_e_confused.gif │ │ └── icon_e_surprised.gif │ ├── upload_icons │ │ ├── avi.gif │ │ ├── bmp.gif │ │ ├── doc.gif │ │ ├── exe.gif │ │ ├── gif.gif │ │ ├── jpg.gif │ │ ├── mid.gif │ │ ├── mov.gif │ │ ├── mp3.gif │ │ ├── mpg.gif │ │ ├── pdf.gif │ │ ├── ppt.gif │ │ ├── rar.gif │ │ ├── txt.gif │ │ ├── wav.gif │ │ ├── xls.gif │ │ ├── zip.gif │ │ ├── html.gif │ │ └── netscape.gif │ ├── ranks │ │ ├── team │ │ │ ├── old │ │ │ │ ├── dev.png │ │ │ │ ├── sty.png │ │ │ │ ├── sup.png │ │ │ │ ├── web.png │ │ │ │ ├── host.png │ │ │ │ ├── moder.png │ │ │ │ ├── modif.png │ │ │ │ ├── dev-lead.png │ │ │ │ ├── manager.png │ │ │ │ ├── sty-lead.png │ │ │ │ ├── sup-lead.png │ │ │ │ ├── web-lead.png │ │ │ │ ├── moder-lead.png │ │ │ │ ├── modif-lead.png │ │ │ │ ├── rank_admin.gif │ │ │ │ ├── rank_support.gif │ │ │ │ └── rank_moderator.gif │ │ │ ├── support.png │ │ │ ├── website.png │ │ │ ├── DEV-TEAM.png │ │ │ ├── bot-build.png │ │ │ ├── bot-styles.png │ │ │ ├── community.png │ │ │ ├── consultant.png │ │ │ ├── tl-support.png │ │ │ ├── tl-website.png │ │ │ ├── BUILD-ROBOT.png │ │ │ ├── STYLE-ROBOT.png │ │ │ ├── SUPPORT-TEAM.png │ │ │ ├── bot-support.png │ │ │ ├── development.png │ │ │ ├── tl-community.png │ │ │ ├── COMMUNITY-TEAM.png │ │ │ ├── CONSULTANT-NEW.png │ │ │ ├── DEV-TEAM-LEAD.png │ │ │ ├── EXTENSION-ROBOT.png │ │ │ ├── FRONT-END-TEAM.png │ │ │ ├── PROJECT-MANAGER.png │ │ │ ├── SUPPORT-ROBOT.png │ │ │ ├── bot-extensions.png │ │ │ ├── tl-development.png │ │ │ ├── tl-project-mgr.png │ │ │ ├── SUPPORT-TEAM-LEAD.png │ │ │ ├── tl-customisation.png │ │ │ ├── COMMUNITY-TEAM-LEAD.png │ │ │ ├── CUSTOMISATION-ROBOT.png │ │ │ ├── CUSTOMISATION-TEAM.png │ │ │ ├── FRONT-END-TEAM-LEAD.png │ │ │ ├── INFASTRUCTURE-TEAM.png │ │ │ ├── customisation-style.png │ │ │ ├── CUSTOMISATION-TEAM-LEAD.png │ │ │ ├── INFASTRUCTURE-TEAM-LEAD.png │ │ │ ├── customisation-extensions.png │ │ │ └── customisation-translate.png │ │ └── index.htm │ ├── index.htm │ └── avatars │ │ ├── index.htm │ │ ├── gallery │ │ └── index.htm │ │ └── upload │ │ └── index.htm ├── docs │ ├── update-config.sample.yml │ └── assets │ │ └── images │ │ ├── bg_header.gif │ │ └── icon_back_top.gif ├── adm │ ├── images │ │ ├── spacer.gif │ │ ├── no_avatar.gif │ │ ├── no_image.png │ │ └── progress_bar.gif │ └── style │ │ ├── installer_main.html │ │ ├── simple_body.html │ │ ├── profilefields │ │ ├── text.html │ │ ├── url.html │ │ ├── int.html │ │ ├── string.html │ │ └── dropdown.html │ │ ├── captcha_default_acp_demo.html │ │ ├── message_body.html │ │ ├── acp_php_info.html │ │ ├── timezone.js │ │ ├── captcha_qa_acp_demo.html │ │ ├── detailed_message_body.html │ │ ├── captcha_recaptcha_v3.html │ │ ├── captcha_recaptcha.html │ │ ├── installer_update.html │ │ └── installer_install.html ├── assets │ └── webfonts │ │ ├── fa-solid-900.ttf │ │ ├── fa-brands-400.ttf │ │ ├── fa-regular-400.ttf │ │ ├── fa-solid-900.woff2 │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.woff2 │ │ ├── fa-v4compatibility.ttf │ │ └── fa-v4compatibility.woff2 ├── ext │ ├── phpBB │ │ └── sslAssets │ │ │ ├── config │ │ │ └── services.yml │ │ │ └── ext.php │ └── index.htm ├── language │ ├── en │ │ ├── email │ │ │ ├── acp_login.txt │ │ │ ├── index.htm │ │ │ ├── pm_report_deleted.txt │ │ │ ├── report_deleted.txt │ │ │ ├── report_pm.txt │ │ │ ├── post_disapproved.txt │ │ │ ├── topic_approved.txt │ │ │ ├── topic_disapproved.txt │ │ │ ├── user_activate.txt │ │ │ ├── group_request.txt │ │ │ ├── report_post.txt │ │ │ ├── post_in_queue.txt │ │ │ ├── topic_in_queue.txt │ │ │ ├── group_added.txt │ │ │ ├── user_activate_inactive.txt │ │ │ ├── pm_report_closed.txt │ │ │ ├── post_approved.txt │ │ │ ├── test.txt │ │ │ ├── admin_welcome_activated.txt │ │ │ ├── admin_activate.txt │ │ │ ├── user_remind_inactive.txt │ │ │ ├── admin_send_email.txt │ │ │ ├── user_forgot_password.txt │ │ │ ├── profile_send_im.txt │ │ │ └── privmsg_notify.txt │ │ ├── index.htm │ │ └── acp │ │ │ └── index.htm │ └── index.htm ├── cache │ └── index.htm ├── files │ └── index.htm ├── store │ └── index.htm ├── download │ └── index.htm └── phpbb │ ├── auth │ ├── index.htm │ └── provider │ │ ├── index.htm │ │ └── oauth │ │ └── service │ │ └── exception.php │ ├── groupposition │ └── exception.php │ ├── di │ └── exception │ │ ├── service_not_found_exception.php │ │ ├── multiple_service_definitions_exception.php │ │ └── di_exception.php │ ├── storage │ ├── update_type.php │ └── exception │ │ ├── action_in_progress_exception.php │ │ └── no_action_in_progress_exception.php │ ├── feed │ └── exception │ │ ├── unauthorized_exception.php │ │ ├── feed_unavailable_exception.php │ │ └── feed_exception.php │ ├── module │ └── exception │ │ ├── module_exception.php │ │ └── module_not_found_exception.php │ ├── search │ └── exception │ │ ├── action_in_progress_exception.php │ │ ├── no_action_in_progress_exception.php │ │ ├── no_search_backend_found_exception.php │ │ └── search_exception.php │ ├── controller │ └── exception.php │ ├── extension │ └── exception.php │ ├── report │ └── exception │ │ ├── already_reported_exception.php │ │ ├── entity_not_found_exception.php │ │ └── report_permission_denied_exception.php │ ├── notification │ └── exception.php │ └── ban │ └── exception │ ├── no_valid_ips_exception.php │ ├── invalid_length_exception.php │ ├── no_valid_users_exception.php │ └── type_not_found_exception.php ├── .vscode └── settings.json ├── composer.phar ├── doctum.phar ├── .devcontainer └── resources │ └── xdebug.ini ├── git-tools └── hooks │ ├── uninstall │ └── install ├── .github ├── setup-unbuffer.sh ├── setup-exiftool.sh ├── phing-sniff.sh ├── CONTRIBUTING.md ├── PULL_REQUEST_TEMPLATE.md ├── check-image-icc-profiles.sh └── ldap │ └── slapd.conf └── .editorconfig /tests/tmp/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phpBB/develop/blank.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phpBB/develop/blank.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phpBB/vendor-ext/.git-keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phpBB/composer-ext.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /phpBB/composer-ext.lock: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /tests/compress/archive/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/compress/extract/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phpBB/styles/prosilver/theme/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/compress/fixtures/1.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/upload/fixture/copies/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phpBB/styles/prosilver/template/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/compress/fixtures/dir/2.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/compress/fixtures/dir/3.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/functional/fixtures/files/empty.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/template/templates/child_only.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phpBB/styles/prosilver/theme/images/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/compress/fixtures/dir/subdir/4.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /tests/event/fixtures/adm/style/acp_bbcodes.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/template/parent_templates/parent_only.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/template/templates/subdir/parent_only.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/extension/ext/vendor2/foo/type/dummy/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/template/templates/include_loop1.html: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/template/templates/include_loop2.html: -------------------------------------------------------------------------------- 1 | 02 2 | -------------------------------------------------------------------------------- /tests/template/templates/include_loop3.html: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/template/templates/variable.html: -------------------------------------------------------------------------------- 1 | {VARIABLE} 2 | -------------------------------------------------------------------------------- /tests/template/ext/include/css/styles/all/theme/test.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/template/templates/subdir/subsubdir/parent_only.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-15163.txt: -------------------------------------------------------------------------------- 1 | --{E -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-16309.txt: -------------------------------------------------------------------------------- 1 | [lol] -------------------------------------------------------------------------------- /tests/template/ext/include/css/styles/all/theme/child_only.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/template/templates/child_only.html: -------------------------------------------------------------------------------- 1 | Only in child. 2 | -------------------------------------------------------------------------------- /tests/template/templates/loop_include1.html: -------------------------------------------------------------------------------- 1 | {test_loop.foo} 2 | -------------------------------------------------------------------------------- /tests/template/templates/subdir/variable.html: -------------------------------------------------------------------------------- 1 | {VARIABLE} 2 | -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-15016.txt: -------------------------------------------------------------------------------- 1 | )--( )-( )-- -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-15348.txt: -------------------------------------------------------------------------------- 1 | :o k: :ok: -------------------------------------------------------------------------------- /tests/template/parent_templates/parent_only.html: -------------------------------------------------------------------------------- 1 | Only in parent. 2 | -------------------------------------------------------------------------------- /tests/template/templates/parent_and_child.html: -------------------------------------------------------------------------------- 1 | Child template. 2 | -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-11742.txt: -------------------------------------------------------------------------------- 1 | [code] tab[/code] -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-14663.txt: -------------------------------------------------------------------------------- 1 | [test]Тест[/test] -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-15261.html: -------------------------------------------------------------------------------- 1 | foo **** baz -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-15261.txt: -------------------------------------------------------------------------------- 1 | foo baz -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-16074.txt: -------------------------------------------------------------------------------- 1 | :man_judge: 👨‍⚖️ -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-16252.txt: -------------------------------------------------------------------------------- 1 | http://localhost/ -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "php.debug.ideKey": "VSCODE" 3 | } 4 | -------------------------------------------------------------------------------- /tests/template/templates/include.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/template/templates/invalid/endif_without_if.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/template/templates/trivial.html: -------------------------------------------------------------------------------- 1 | This is a trivial template. 2 | -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-16252.html: -------------------------------------------------------------------------------- 1 | http://localhost/ -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-7275.txt: -------------------------------------------------------------------------------- 1 | [center]:)[/center] -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-8419.txt: -------------------------------------------------------------------------------- 1 | [ort]tę [/ort]przykład -------------------------------------------------------------------------------- /phpBB/install/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | -------------------------------------------------------------------------------- /tests/template/parent_templates/parent_and_child.html: -------------------------------------------------------------------------------- 1 | Parent template. 2 | -------------------------------------------------------------------------------- /tests/template/templates/include_variable.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/template/templates/loop_include1_twig.html: -------------------------------------------------------------------------------- 1 | {{ test_loop_inner.foo }} 2 | -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-14405.txt: -------------------------------------------------------------------------------- 1 | [url=http://example.org]... -------------------------------------------------------------------------------- /composer.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/composer.phar -------------------------------------------------------------------------------- /doctum.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/doctum.phar -------------------------------------------------------------------------------- /phpBB/includes/utf/data/search_indexer_19.php: -------------------------------------------------------------------------------- 1 | '龻'); 2 | -------------------------------------------------------------------------------- /phpBB/includes/utf/data/search_indexer_26.php: -------------------------------------------------------------------------------- 1 | '힣'); 2 | -------------------------------------------------------------------------------- /phpBB/includes/utf/data/search_indexer_64.php: -------------------------------------------------------------------------------- 1 | '𠀀'); 2 | -------------------------------------------------------------------------------- /phpBB/includes/utf/data/search_indexer_84.php: -------------------------------------------------------------------------------- 1 | '𪛖'); 2 | -------------------------------------------------------------------------------- /tests/extension/ext/vendor4/bar/styles/all/template/foobar_body.html: -------------------------------------------------------------------------------- 1 | All folder 2 | -------------------------------------------------------------------------------- /tests/fixtures/config.php: -------------------------------------------------------------------------------- 1 | '䶵','一'=>'一'); 2 | -------------------------------------------------------------------------------- /tests/fixtures/config_other.php: -------------------------------------------------------------------------------- 1 | 2 | {$VAR} 3 | -------------------------------------------------------------------------------- /tests/template/templates/parent_and_child.js: -------------------------------------------------------------------------------- 1 | // JavaScript file in a child style. 2 | -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-13921.txt: -------------------------------------------------------------------------------- 1 | [size=200][center]xxx[/center][/size] -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-14846.txt: -------------------------------------------------------------------------------- 1 | [mod=Mickroz]moderator text[/mod] -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-16053.txt: -------------------------------------------------------------------------------- 1 | [test=http://ea117.com]Test[/test] -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-9377.txt: -------------------------------------------------------------------------------- 1 | [red]red [blue]blue[/blue] red[/red] -------------------------------------------------------------------------------- /phpBB/config/installer/config.yml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: ../default/config.yml } 3 | -------------------------------------------------------------------------------- /phpBB/config/production/config.yml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: ../default/config.yml } 3 | -------------------------------------------------------------------------------- /phpBB/install_new/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Order Allow,Deny 3 | Deny from All 4 | -------------------------------------------------------------------------------- /phpBB/styles/prosilver/theme/en/stylesheet.css: -------------------------------------------------------------------------------- 1 | /* language specific styles go here */ 2 | -------------------------------------------------------------------------------- /tests/di/fixtures/config/test/config.yml: -------------------------------------------------------------------------------- 1 | core: 2 | require_dev_dependencies: true 3 | -------------------------------------------------------------------------------- /tests/extension/ext/vendor3/bar/styles/prosilver/template/foobar_body.html: -------------------------------------------------------------------------------- 1 | bertie rules! 2 | -------------------------------------------------------------------------------- /tests/template/parent_templates/parent_and_child.js: -------------------------------------------------------------------------------- 1 | // JavaScript file in a parent style. 2 | -------------------------------------------------------------------------------- /tests/template/parent_templates/parent_only.js: -------------------------------------------------------------------------------- 1 | // JavaScript file only in parent style. 2 | -------------------------------------------------------------------------------- /tests/template/templates/include_variables.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-11153.html: -------------------------------------------------------------------------------- 1 | ... -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-11153.txt: -------------------------------------------------------------------------------- 1 | [myemail=user@example.org]...[/myemail] -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-13425.txt: -------------------------------------------------------------------------------- 1 | [quote]:lol: starts with a smiley[/quote] -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-15008.html: -------------------------------------------------------------------------------- 1 | No smilies :) or shortnames :strawberry: -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-15008.txt: -------------------------------------------------------------------------------- 1 | No smilies :) or shortnames :strawberry: -------------------------------------------------------------------------------- /phpBB/config/installer/routing/environment.yml: -------------------------------------------------------------------------------- 1 | core.default: 2 | resource: installer.yml 3 | -------------------------------------------------------------------------------- /tests/di/fixtures/config/production/config.yml: -------------------------------------------------------------------------------- 1 | core: 2 | require_dev_dependencies: true 3 | -------------------------------------------------------------------------------- /tests/di/fixtures/ext/vendor/available/config/services.yml: -------------------------------------------------------------------------------- 1 | parameters: 2 | available: true 3 | -------------------------------------------------------------------------------- /tests/di/fixtures/ext/vendor/enabled-3/config/services.yml: -------------------------------------------------------------------------------- 1 | parameters: 2 | enabled_3: true 3 | -------------------------------------------------------------------------------- /tests/di/fixtures/other_config/test/config.yml: -------------------------------------------------------------------------------- 1 | core: 2 | require_dev_dependencies: true 3 | -------------------------------------------------------------------------------- /tests/event/fixtures/none.test: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-10122.txt: -------------------------------------------------------------------------------- 1 | [list=none][*]This is my indented text[/list] -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-12221.txt: -------------------------------------------------------------------------------- 1 | https://example.com/test/#?javascript:lolhax -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-14663.html: -------------------------------------------------------------------------------- 1 | Тест -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-16053.html: -------------------------------------------------------------------------------- 1 | Test -------------------------------------------------------------------------------- /phpBB/config/default/config.yml: -------------------------------------------------------------------------------- 1 | # phpBB's config file (This line is needed because of the packager) 2 | -------------------------------------------------------------------------------- /phpBB/develop/test.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/develop/test.gif -------------------------------------------------------------------------------- /phpBB/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/spacer.gif -------------------------------------------------------------------------------- /phpBB/styles/prosilver/template/ucp_pm_message_footer.html: -------------------------------------------------------------------------------- 1 |
{S_FORM_TOKEN}
2 | 3 | -------------------------------------------------------------------------------- /tests/di/fixtures/other_config/production/config.yml: -------------------------------------------------------------------------------- 1 | core: 2 | require_dev_dependencies: true 3 | -------------------------------------------------------------------------------- /tests/template/datasets/event_inheritance/styles/silver/template/event_two.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/template/datasets/ext_trivial/styles/silver/template/event_simple.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/template/templates/avatar_group.html: -------------------------------------------------------------------------------- 1 | {{ avatar('group', row, alt, ignore_config, lazy) }} 2 | -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-13641.txt: -------------------------------------------------------------------------------- 1 | [c][color=#FF0000][/c] - [color=#FF0000]red[/color] -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-14260.txt: -------------------------------------------------------------------------------- 1 | http://example.org/article/S0883-9441(11)0483-7/pdf -------------------------------------------------------------------------------- /phpBB/docs/update-config.sample.yml: -------------------------------------------------------------------------------- 1 | updater: 2 | type: all 3 | extensions: ['phpbb/viglink'] 4 | -------------------------------------------------------------------------------- /phpBB/styles/all/template/macros/forms/dimension.twig: -------------------------------------------------------------------------------- 1 | {{ FormsInput(WIDTH) }} x {{ FormsInput(HEIGHT) }} 2 | -------------------------------------------------------------------------------- /tests/template/datasets/event_inheritance/styles/silver/template/event_test.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/template/datasets/ext_trivial/styles/silver/template/event_universal.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/template/templates/invalid/output/endif_without_if.html: -------------------------------------------------------------------------------- 1 | Parse error (fatal, destroys php runtime). 2 | -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-14706.txt: -------------------------------------------------------------------------------- 1 | [list][list=a][*]a[*]b[*]c[*]d[*]e[/list][*]outer[/list] -------------------------------------------------------------------------------- /tests/upload/fixture/bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/tests/upload/fixture/bmp -------------------------------------------------------------------------------- /tests/upload/fixture/gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/tests/upload/fixture/gif -------------------------------------------------------------------------------- /tests/upload/fixture/iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/tests/upload/fixture/iff -------------------------------------------------------------------------------- /tests/upload/fixture/jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/tests/upload/fixture/jp2 -------------------------------------------------------------------------------- /tests/upload/fixture/jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/tests/upload/fixture/jpg -------------------------------------------------------------------------------- /tests/upload/fixture/jpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/tests/upload/fixture/jpx -------------------------------------------------------------------------------- /tests/upload/fixture/png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/tests/upload/fixture/png -------------------------------------------------------------------------------- /tests/upload/fixture/psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/tests/upload/fixture/psd -------------------------------------------------------------------------------- /tests/upload/fixture/tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/tests/upload/fixture/tif -------------------------------------------------------------------------------- /tests/upload/fixture/wbmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/tests/upload/fixture/wbmp -------------------------------------------------------------------------------- /phpBB/adm/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/adm/images/spacer.gif -------------------------------------------------------------------------------- /phpBB/config/test/routing/environment.yml: -------------------------------------------------------------------------------- 1 | core.default: 2 | resource: ../../default/routing/routing.yml 3 | -------------------------------------------------------------------------------- /tests/class_loader/phpbb/dir2/dir2.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/template/templates/lang.html: -------------------------------------------------------------------------------- 1 | {L_VARIABLE} 2 | {L_1_VARIABLE} 3 | 4 | {LA_VARIABLE} 5 | {LA_1_VARIABLE} 6 | -------------------------------------------------------------------------------- /tests/text_processing/fixtures/empty.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-10002.txt: -------------------------------------------------------------------------------- 1 | [quote][list][*]one 2 | [quote][list][*]two[/list][/quote] -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-12195.txt: -------------------------------------------------------------------------------- 1 | [url=//example.org/][img]//example.org/img.png[/img][/url] -------------------------------------------------------------------------------- /tests/upload/fixture/tif_msb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/tests/upload/fixture/tif_msb -------------------------------------------------------------------------------- /phpBB/adm/images/no_avatar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/adm/images/no_avatar.gif -------------------------------------------------------------------------------- /phpBB/adm/images/no_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/adm/images/no_image.png -------------------------------------------------------------------------------- /phpBB/config/development/routing/environment.yml: -------------------------------------------------------------------------------- 1 | core.default: 2 | resource: ../../default/routing/routing.yml 3 | -------------------------------------------------------------------------------- /phpBB/config/production/routing/environment.yml: -------------------------------------------------------------------------------- 1 | core.default: 2 | resource: ../../default/routing/routing.yml 3 | -------------------------------------------------------------------------------- /phpBB/config/test/container/parameters.yml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: ../../default/container/parameters.yml } 3 | -------------------------------------------------------------------------------- /phpBB/config/test/container/services.yml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: ../../default/container/services.yml } 3 | -------------------------------------------------------------------------------- /tests/class_loader/phpbb/class_name.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-14740.txt: -------------------------------------------------------------------------------- 1 | [mod=neufke]Mod Remark[/mod] 2 | [mod="neufke"]Mod Remark[/mod] -------------------------------------------------------------------------------- /tests/upload/fixture/iff_maya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/tests/upload/fixture/iff_maya -------------------------------------------------------------------------------- /phpBB/adm/images/progress_bar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/adm/images/progress_bar.gif -------------------------------------------------------------------------------- /phpBB/config/development/container/services.yml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: ../../default/container/services.yml } 3 | -------------------------------------------------------------------------------- /phpBB/config/production/container/services.yml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: ../../default/container/services.yml } 3 | -------------------------------------------------------------------------------- /phpBB/images/icons/misc/fire.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/icons/misc/fire.gif -------------------------------------------------------------------------------- /phpBB/images/icons/misc/heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/icons/misc/heart.gif -------------------------------------------------------------------------------- /phpBB/images/icons/misc/star.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/icons/misc/star.gif -------------------------------------------------------------------------------- /phpBB/images/icons/smile/info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/icons/smile/info.gif -------------------------------------------------------------------------------- /phpBB/images/smilies/icon_cry.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/smilies/icon_cry.gif -------------------------------------------------------------------------------- /phpBB/images/smilies/icon_eek.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/smilies/icon_eek.gif -------------------------------------------------------------------------------- /phpBB/images/smilies/icon_lol.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/smilies/icon_lol.gif -------------------------------------------------------------------------------- /phpBB/images/smilies/icon_mad.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/smilies/icon_mad.gif -------------------------------------------------------------------------------- /phpBB/images/upload_icons/avi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/upload_icons/avi.gif -------------------------------------------------------------------------------- /phpBB/images/upload_icons/bmp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/upload_icons/bmp.gif -------------------------------------------------------------------------------- /phpBB/images/upload_icons/doc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/upload_icons/doc.gif -------------------------------------------------------------------------------- /phpBB/images/upload_icons/exe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/upload_icons/exe.gif -------------------------------------------------------------------------------- /phpBB/images/upload_icons/gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/upload_icons/gif.gif -------------------------------------------------------------------------------- /phpBB/images/upload_icons/jpg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/upload_icons/jpg.gif -------------------------------------------------------------------------------- /phpBB/images/upload_icons/mid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/upload_icons/mid.gif -------------------------------------------------------------------------------- /phpBB/images/upload_icons/mov.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/upload_icons/mov.gif -------------------------------------------------------------------------------- /phpBB/images/upload_icons/mp3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/upload_icons/mp3.gif -------------------------------------------------------------------------------- /phpBB/images/upload_icons/mpg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/upload_icons/mpg.gif -------------------------------------------------------------------------------- /phpBB/images/upload_icons/pdf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/upload_icons/pdf.gif -------------------------------------------------------------------------------- /phpBB/images/upload_icons/ppt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/upload_icons/ppt.gif -------------------------------------------------------------------------------- /phpBB/images/upload_icons/rar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/upload_icons/rar.gif -------------------------------------------------------------------------------- /phpBB/images/upload_icons/txt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/upload_icons/txt.gif -------------------------------------------------------------------------------- /phpBB/images/upload_icons/wav.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/upload_icons/wav.gif -------------------------------------------------------------------------------- /phpBB/images/upload_icons/xls.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/upload_icons/xls.gif -------------------------------------------------------------------------------- /phpBB/images/upload_icons/zip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/upload_icons/zip.gif -------------------------------------------------------------------------------- /tests/controller/config/services.yml: -------------------------------------------------------------------------------- 1 | services: 2 | core_foo.controller: 3 | class: phpbb\controller\foo 4 | -------------------------------------------------------------------------------- /tests/extension/ext/vendor2/foo/a_class.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/template/templates/define_include.html: -------------------------------------------------------------------------------- 1 | {$VALUE} 2 | 3 | {$INCLUDED_VALUE} 4 | -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-10122.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-13641.html: -------------------------------------------------------------------------------- 1 | [color=#FF0000] - red -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-16074.html: -------------------------------------------------------------------------------- 1 | :man_judge: 👨‍⚖️ -------------------------------------------------------------------------------- /phpBB/config/development/container/parameters.yml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: ../../default/container/parameters.yml } 3 | -------------------------------------------------------------------------------- /phpBB/config/production/container/parameters.yml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: ../../default/container/parameters.yml } 3 | -------------------------------------------------------------------------------- /phpBB/images/icons/smile/alert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/icons/smile/alert.gif -------------------------------------------------------------------------------- /phpBB/images/ranks/team/old/dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/ranks/team/old/dev.png -------------------------------------------------------------------------------- /phpBB/images/ranks/team/old/sty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/ranks/team/old/sty.png -------------------------------------------------------------------------------- /phpBB/images/ranks/team/old/sup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/ranks/team/old/sup.png -------------------------------------------------------------------------------- /phpBB/images/ranks/team/old/web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/ranks/team/old/web.png -------------------------------------------------------------------------------- /phpBB/images/ranks/team/support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/ranks/team/support.png -------------------------------------------------------------------------------- /phpBB/images/ranks/team/website.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/ranks/team/website.png -------------------------------------------------------------------------------- /phpBB/images/smilies/icon_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/smilies/icon_arrow.gif -------------------------------------------------------------------------------- /phpBB/images/smilies/icon_cool.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/smilies/icon_cool.gif -------------------------------------------------------------------------------- /phpBB/images/smilies/icon_e_sad.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/smilies/icon_e_sad.gif -------------------------------------------------------------------------------- /phpBB/images/smilies/icon_evil.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/smilies/icon_evil.gif -------------------------------------------------------------------------------- /phpBB/images/smilies/icon_idea.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/smilies/icon_idea.gif -------------------------------------------------------------------------------- /phpBB/images/smilies/icon_razz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/smilies/icon_razz.gif -------------------------------------------------------------------------------- /phpBB/images/upload_icons/html.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/upload_icons/html.gif -------------------------------------------------------------------------------- /tests/class_loader/phpbb/dir/class_name.php: -------------------------------------------------------------------------------- 1 | http://www.ööö.com -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-9073.txt: -------------------------------------------------------------------------------- 1 | http://www.some-ad-site.com/ 2 | [url]http://www.some-ad-site.com/[/url] 3 | -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-9377.html: -------------------------------------------------------------------------------- 1 | red blue red -------------------------------------------------------------------------------- /tests/upload/fixture/tif_compressed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/tests/upload/fixture/tif_compressed -------------------------------------------------------------------------------- /phpBB/assets/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/assets/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /phpBB/config/default/container/services_php.yml: -------------------------------------------------------------------------------- 1 | services: 2 | php_ini: 3 | class: bantu\IniGetWrapper\IniGetWrapper 4 | -------------------------------------------------------------------------------- /phpBB/config/test/container/environment.yml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: services.yml } 3 | - { resource: parameters.yml } 4 | -------------------------------------------------------------------------------- /phpBB/docs/assets/images/bg_header.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/docs/assets/images/bg_header.gif -------------------------------------------------------------------------------- /phpBB/images/icons/misc/thinking.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/icons/misc/thinking.gif -------------------------------------------------------------------------------- /phpBB/images/icons/smile/mrgreen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/icons/smile/mrgreen.gif -------------------------------------------------------------------------------- /phpBB/images/icons/smile/question.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/icons/smile/question.gif -------------------------------------------------------------------------------- /phpBB/images/icons/smile/redface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/icons/smile/redface.gif -------------------------------------------------------------------------------- /phpBB/images/ranks/team/DEV-TEAM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/ranks/team/DEV-TEAM.png -------------------------------------------------------------------------------- /phpBB/images/ranks/team/bot-build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/ranks/team/bot-build.png -------------------------------------------------------------------------------- /phpBB/images/ranks/team/bot-styles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/ranks/team/bot-styles.png -------------------------------------------------------------------------------- /phpBB/images/ranks/team/community.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/ranks/team/community.png -------------------------------------------------------------------------------- /phpBB/images/ranks/team/consultant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/ranks/team/consultant.png -------------------------------------------------------------------------------- /phpBB/images/ranks/team/old/host.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/ranks/team/old/host.png -------------------------------------------------------------------------------- /phpBB/images/ranks/team/old/moder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/ranks/team/old/moder.png -------------------------------------------------------------------------------- /phpBB/images/ranks/team/old/modif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/ranks/team/old/modif.png -------------------------------------------------------------------------------- /phpBB/images/ranks/team/tl-support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/ranks/team/tl-support.png -------------------------------------------------------------------------------- /phpBB/images/ranks/team/tl-website.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/ranks/team/tl-website.png -------------------------------------------------------------------------------- /phpBB/images/smilies/icon_e_geek.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/smilies/icon_e_geek.gif -------------------------------------------------------------------------------- /phpBB/images/smilies/icon_e_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/smilies/icon_e_smile.gif -------------------------------------------------------------------------------- /phpBB/images/smilies/icon_e_ugeek.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/smilies/icon_e_ugeek.gif -------------------------------------------------------------------------------- /phpBB/images/smilies/icon_e_wink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/smilies/icon_e_wink.gif -------------------------------------------------------------------------------- /phpBB/images/smilies/icon_exclaim.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/smilies/icon_exclaim.gif -------------------------------------------------------------------------------- /phpBB/images/smilies/icon_mrgreen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/smilies/icon_mrgreen.gif -------------------------------------------------------------------------------- /phpBB/images/smilies/icon_neutral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/smilies/icon_neutral.gif -------------------------------------------------------------------------------- /phpBB/images/smilies/icon_question.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/smilies/icon_question.gif -------------------------------------------------------------------------------- /phpBB/images/smilies/icon_redface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/smilies/icon_redface.gif -------------------------------------------------------------------------------- /phpBB/images/smilies/icon_rolleyes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/smilies/icon_rolleyes.gif -------------------------------------------------------------------------------- /phpBB/images/smilies/icon_twisted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/smilies/icon_twisted.gif -------------------------------------------------------------------------------- /phpBB/images/upload_icons/netscape.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/upload_icons/netscape.gif -------------------------------------------------------------------------------- /tests/compress/fixtures/archive.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/tests/compress/fixtures/archive.tar.gz -------------------------------------------------------------------------------- /tests/extension/ext/vendor/moo/feature_class.php: -------------------------------------------------------------------------------- 1 | http://example.org]... -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-14790.txt: -------------------------------------------------------------------------------- 1 | [color=#0000FF][list][*]text 2 | [*]text 3 | [*]text 4 | [*]text[/list][/color] -------------------------------------------------------------------------------- /phpBB/assets/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/assets/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /phpBB/assets/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/assets/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /phpBB/assets/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/assets/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /phpBB/config/installer/container/environment.yml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: services.yml } 3 | - { resource: parameters.yml } 4 | -------------------------------------------------------------------------------- /phpBB/config/production/container/environment.yml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: services.yml } 3 | - { resource: parameters.yml } 4 | -------------------------------------------------------------------------------- /phpBB/images/icons/misc/radioactive.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/icons/misc/radioactive.gif -------------------------------------------------------------------------------- /phpBB/images/ranks/team/BUILD-ROBOT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/ranks/team/BUILD-ROBOT.png -------------------------------------------------------------------------------- /phpBB/images/ranks/team/STYLE-ROBOT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/ranks/team/STYLE-ROBOT.png -------------------------------------------------------------------------------- /phpBB/images/ranks/team/SUPPORT-TEAM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/ranks/team/SUPPORT-TEAM.png -------------------------------------------------------------------------------- /phpBB/images/ranks/team/bot-support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/ranks/team/bot-support.png -------------------------------------------------------------------------------- /phpBB/images/ranks/team/development.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/ranks/team/development.png -------------------------------------------------------------------------------- /phpBB/images/ranks/team/old/dev-lead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/ranks/team/old/dev-lead.png -------------------------------------------------------------------------------- /phpBB/images/ranks/team/old/manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/ranks/team/old/manager.png -------------------------------------------------------------------------------- /phpBB/images/ranks/team/old/sty-lead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/ranks/team/old/sty-lead.png -------------------------------------------------------------------------------- /phpBB/images/ranks/team/old/sup-lead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/ranks/team/old/sup-lead.png -------------------------------------------------------------------------------- /phpBB/images/ranks/team/old/web-lead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/ranks/team/old/web-lead.png -------------------------------------------------------------------------------- /phpBB/images/ranks/team/tl-community.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/ranks/team/tl-community.png -------------------------------------------------------------------------------- /phpBB/images/smilies/icon_e_biggrin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/smilies/icon_e_biggrin.gif -------------------------------------------------------------------------------- /phpBB/images/smilies/icon_e_confused.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/smilies/icon_e_confused.gif -------------------------------------------------------------------------------- /tests/compress/fixtures/archive.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/tests/compress/fixtures/archive.tar.bz2 -------------------------------------------------------------------------------- /tests/extension/ext/vendor2/bar/migrations/bar.php: -------------------------------------------------------------------------------- 1 | {$INNER_VALUE} 2 | -------------------------------------------------------------------------------- /tests/upload/fixture/txt: -------------------------------------------------------------------------------- 1 | mime trigger 2 | The HTML tags should remain uppercase so that case-insensitivity can be checked. 3 | -------------------------------------------------------------------------------- /phpBB/assets/webfonts/fa-v4compatibility.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/assets/webfonts/fa-v4compatibility.ttf -------------------------------------------------------------------------------- /phpBB/images/ranks/team/SUPPORT-TEAM-LEAD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/ranks/team/SUPPORT-TEAM-LEAD.png -------------------------------------------------------------------------------- /phpBB/images/ranks/team/old/rank_support.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/ranks/team/old/rank_support.gif -------------------------------------------------------------------------------- /phpBB/images/ranks/team/tl-customisation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/ranks/team/tl-customisation.png -------------------------------------------------------------------------------- /tests/console/fixtures/txt.txt: -------------------------------------------------------------------------------- 1 | mime trigger 2 | The HTML tags should remain uppercase so that case-insensitivity can be checked. 3 | -------------------------------------------------------------------------------- /tests/extension/phpbb/default/implementation.php: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /tests/functional/fixtures/ext/foo/bar/ext.php: -------------------------------------------------------------------------------- 1 | test 7 | -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-16309.html: -------------------------------------------------------------------------------- 1 | [lol] -------------------------------------------------------------------------------- /phpBB/develop/collect_cache_stats.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | DIR=$(dirname "$0")/../cache; 3 | cat "$DIR/sql_*.php" | grep '/* SELECT' | sed 's,/\* ,,;s, \*/,,' | sort 4 | -------------------------------------------------------------------------------- /phpBB/images/ranks/team/CUSTOMISATION-TEAM-LEAD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/ranks/team/CUSTOMISATION-TEAM-LEAD.png -------------------------------------------------------------------------------- /phpBB/images/ranks/team/INFASTRUCTURE-TEAM-LEAD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/ranks/team/INFASTRUCTURE-TEAM-LEAD.png -------------------------------------------------------------------------------- /phpBB/images/ranks/team/customisation-extensions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/ranks/team/customisation-extensions.png -------------------------------------------------------------------------------- /phpBB/images/ranks/team/customisation-translate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/images/ranks/team/customisation-translate.png -------------------------------------------------------------------------------- /phpBB/styles/prosilver/theme/images/plupload/done.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/styles/prosilver/theme/images/plupload/done.gif -------------------------------------------------------------------------------- /tests/controller/ext/vendor2/bar/config/test/routing/environment.yml: -------------------------------------------------------------------------------- 1 | controller3: 2 | path: /bar 3 | defaults: { _controller: bar.controller:handle } 4 | -------------------------------------------------------------------------------- /tests/functional/fixtures/ext/foo/bar/language/en/foo_global.php: -------------------------------------------------------------------------------- 1 | 'Overwritten by foo', 5 | )); 6 | -------------------------------------------------------------------------------- /tests/functional/fixtures/ext/foo/bar/styles/prosilver/template/event/navbar_header_quick_links_after.html: -------------------------------------------------------------------------------- 1 |
  • {{ lang('FOO_BAR_QUICK_LINK') }}
  • -------------------------------------------------------------------------------- /tests/functional/fixtures/ext/foo/foo/config/resource.yml: -------------------------------------------------------------------------------- 1 | foo_foo_controller: 2 | path: /foo 3 | defaults: { _controller: foo_foo.controller:handle } 4 | -------------------------------------------------------------------------------- /tests/functional/fixtures/ext/foo/foo/styles/prosilver/template/event/navbar_header_quick_links_after.html: -------------------------------------------------------------------------------- 1 |
  • {{ lang('FOO_FOO_QUICK_LINK') }}
  • -------------------------------------------------------------------------------- /tests/functional/fixtures/files/illegal-extension.bif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/tests/functional/fixtures/files/illegal-extension.bif -------------------------------------------------------------------------------- /tests/template/templates/invalid/output/include_nonexistent_file.html: -------------------------------------------------------------------------------- 1 | style resource locator: File for handle nonexistent.html does not exist. Could not find: 2 | -------------------------------------------------------------------------------- /tests/template/templates/loop_include.html: -------------------------------------------------------------------------------- 1 | 2 | {test_loop.foo} 3 | 4 | 5 | -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-12195.html: -------------------------------------------------------------------------------- 1 | Image -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-15163.html: -------------------------------------------------------------------------------- 1 | --{E -------------------------------------------------------------------------------- /phpBB/styles/prosilver/theme/images/plupload/error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/styles/prosilver/theme/images/plupload/error.gif -------------------------------------------------------------------------------- /tests/template/templates/events.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /tests/template/templates/loop_reuse.html: -------------------------------------------------------------------------------- 1 | 2 | {one.VAR} 3 | 4 | {one.one.VAR} 5 | 6 | 7 | -------------------------------------------------------------------------------- /tests/template/templates/twig_parent.html: -------------------------------------------------------------------------------- 1 | 2 | 1 3 | 4 | 5 | 6 | 2 7 | 8 | -------------------------------------------------------------------------------- /phpBB/adm/style/installer_main.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |

    {TITLE}

    4 |

    {BODY}

    5 | 6 | 7 | -------------------------------------------------------------------------------- /phpBB/config/default/container/services_posting.yml: -------------------------------------------------------------------------------- 1 | services: 2 | post.helper: 3 | class: phpbb\posting\post_helper 4 | arguments: 5 | - '@dbal.conn' 6 | -------------------------------------------------------------------------------- /phpBB/styles/all/template/macros/forms/radio_buttons.twig: -------------------------------------------------------------------------------- 1 | {% for button in BUTTONS %} 2 | 3 | {% endfor %} 4 | -------------------------------------------------------------------------------- /phpBB/styles/prosilver/theme/images/plupload/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/area51-phpbb3/master/phpBB/styles/prosilver/theme/images/plupload/throbber.gif -------------------------------------------------------------------------------- /tests/controller/ext/vendor2/foo/subfolder/config/routing.yml: -------------------------------------------------------------------------------- 1 | controller_noroute: 2 | path: /donotfindthis 3 | defaults: { _controller: foo.controller:handle } 4 | -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-12221.html: -------------------------------------------------------------------------------- 1 | https://example.com/test/#?javascript:lolhax -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-8419.html: -------------------------------------------------------------------------------- 1 | przykład -------------------------------------------------------------------------------- /tests/console/cron/tasks/simple_ready.php: -------------------------------------------------------------------------------- 1 | | 2 | -------------------------------------------------------------------------------- /tests/template/datasets/ext_trivial/styles/silver/template/event_loop.html: -------------------------------------------------------------------------------- 1 | 2 | event_loop 3 | 4 | -------------------------------------------------------------------------------- /tests/template/templates/loop_nested_include.html: -------------------------------------------------------------------------------- 1 | 2 | [{test_loop.foo} 3 | |] 4 | 5 | -------------------------------------------------------------------------------- /tests/template/templates/twig.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 3{VARIABLE|upper}|{VARIABLE|lower} 5 | 6 | 7 | -------------------------------------------------------------------------------- /tests/version/fixture/30x.txt: -------------------------------------------------------------------------------- 1 | 3.0.14 2 | https://www.phpbb.com/community/viewtopic.php?f=14&t=2313941 3 | 3.3.12 4 | https://www.phpbb.com/community/viewtopic.php?t=2653732 5 | -------------------------------------------------------------------------------- /tests/template/datasets/ext_trivial/styles/silver/template/event_subloop.html: -------------------------------------------------------------------------------- 1 | 2 | event_loop 3 | 4 | -------------------------------------------------------------------------------- /tests/template/templates/loop_include_twig.html: -------------------------------------------------------------------------------- 1 | {% for test_loop_inner in test_loop %} 2 | {{ test_loop_inner.foo }} 3 | {% INCLUDE 'loop_include1_twig.html' %} 4 | {% endfor %} 5 | -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-14706.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/template/templates/include_loop_define.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-10587.txt: -------------------------------------------------------------------------------- 1 | [url]http://example.org/?tourney[id]=34&action=brackets[/url] 2 | [url="http://example.org/?tourney[id]=34&action=brackets"]link[/url] -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-11742.html: -------------------------------------------------------------------------------- 1 |

    Code: Select all

    	tab
    -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-7275.html: -------------------------------------------------------------------------------- 1 |
    :)
    -------------------------------------------------------------------------------- /phpBB/config/installer/container/parameters.yml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: ../../default/container/parameters.yml } 3 | 4 | parameters: 5 | installer.create_config_file.options: [] 6 | -------------------------------------------------------------------------------- /tests/functional/fixtures/ext/foo/bar/language/en/permissions_foo.php: -------------------------------------------------------------------------------- 1 | 'Can view foobar with permission foo', 5 | )); 6 | -------------------------------------------------------------------------------- /tests/functional/fixtures/ext/foo/bar/styles/prosilver/template/event/index_body_forumlist_body_before.html: -------------------------------------------------------------------------------- 1 |

    {{ lang('FOO_BAR_FORUMLIST_BODY_BEFORE') }}

    -------------------------------------------------------------------------------- /tests/functional/fixtures/ext/foo/foo/styles/prosilver/template/event/index_body_forumlist_body_before.html: -------------------------------------------------------------------------------- 1 |

    {{ lang('FOO_FOO_FORUMLIST_BODY_BEFORE') }}

    -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-10268.txt: -------------------------------------------------------------------------------- 1 | [quote="http://phpbb.com"]...[/quote] 2 | [quote=" http://phpbb.com"]...[/quote] 3 | [b]http://phpbb.com[/b] 4 | [b] http://phpbb.com[/b] 5 | -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-14260.html: -------------------------------------------------------------------------------- 1 | http://example.org/article/S0883-9441(11)0483-7/pdf -------------------------------------------------------------------------------- /tests/template/templates/loop_nested_include1.html: -------------------------------------------------------------------------------- 1 | [{test_loop.foo}| 2 | 3 | [{test_loop.foo}| 4 | {test_loop.inner.myinner}] 5 | ] 6 | -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-13921.html: -------------------------------------------------------------------------------- 1 |
    xxx
    -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-9791.txt: -------------------------------------------------------------------------------- 1 | http://www.phpbb.com/community/search.php?keywords=bogus&terms=all&author=&fid[]=46&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Search -------------------------------------------------------------------------------- /phpBB/ext/phpBB/sslAssets/config/services.yml: -------------------------------------------------------------------------------- 1 | services: 2 | phpBB.sslAssets.listener: 3 | class: phpBB\sslAssets\event\listener 4 | tags: 5 | - { name: event.listener } -------------------------------------------------------------------------------- /tests/event/fixtures/default.test: -------------------------------------------------------------------------------- 1 | dispatch('default.dispatch'); 10 | -------------------------------------------------------------------------------- /tests/template/templates/loop_nested_include_twig.html: -------------------------------------------------------------------------------- 1 | {% for test_loop_inner in test_loop %} 2 | [{{ test_loop_inner.foo }} 3 | |{% INCLUDE 'loop_nested_include1_twig.html' %}] 4 | {% endfor %} 5 | -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-10002.html: -------------------------------------------------------------------------------- 1 |
    • one 2 |
      • two
    -------------------------------------------------------------------------------- /phpBB/styles/prosilver/template/posting_body.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /tests/di/fixtures/ext/vendor/enabled_4/environment.yml: -------------------------------------------------------------------------------- 1 | parameters: 2 | enabled_4: true 3 | tables.foo_bar: '%core.table_prefix%foo_bar' 4 | tables.acl_groups: '%core.table_prefix%some_other' 5 | -------------------------------------------------------------------------------- /tests/functional/fixtures/ext/foo/bar/styles/prosilver/template/foo_bar_body.html: -------------------------------------------------------------------------------- 1 | 2 |
    {A_VARIABLE}
    3 | 4 | -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-14846.html: -------------------------------------------------------------------------------- 1 |
    moderator text
    - Mickroz
    -------------------------------------------------------------------------------- /phpBB/styles/prosilver/imgs/svg/arrow-right-bold.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/template/datasets/ext_trivial/ext/trivial/styles/all/template/event/event_variable_spacing.html: -------------------------------------------------------------------------------- 1 | |{VARIABLE}| 2 | {VARIABLE}|{VARIABLE}| 3 | 4 | |{VARIABLE} 5 | 6 |
    test
    7 | -------------------------------------------------------------------------------- /tests/template/templates/loop_nested_include1_twig.html: -------------------------------------------------------------------------------- 1 | [{{ test_loop_inner.foo }}| 2 | {% for inner in test_loop_inner.inner %} 3 | [{{ test_loop_inner.foo }}| 4 | {{ inner.myinner }}] 5 | {% endfor %}] 6 | -------------------------------------------------------------------------------- /tests/template/templates/loop_reuse_twig.html: -------------------------------------------------------------------------------- 1 | {% for one_inner in one %} 2 | {{ one_inner.VAR }} 3 | {% for one_one_inner in one_inner.one %} 4 | {{ one_one_inner.VAR }} 5 | {% endfor %} 6 | {% endfor %} 7 | -------------------------------------------------------------------------------- /tests/template/templates/loop_nested2.html: -------------------------------------------------------------------------------- 1 | 2 | o{outer.S_ROW_COUNT} 3 | 4 | m{outer.middle.S_ROW_COUNT}{outer.S_ROW_COUNT} 5 | 6 | 7 | -------------------------------------------------------------------------------- /phpBB/adm/style/simple_body.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
    4 |

    {MESSAGE_TITLE}

    5 |

    {MESSAGE_TEXT}

    6 |
    7 | 8 | 9 | -------------------------------------------------------------------------------- /tests/functional/fixtures/ext/foo/bar/styles/prosilver/template/foobar.html: -------------------------------------------------------------------------------- 1 | 2 |
    UCP Extension Template Test Passed!
    3 | 4 | -------------------------------------------------------------------------------- /tests/functional/fixtures/ext/foo/bar/styles/prosilver/template/foobar_mcp.html: -------------------------------------------------------------------------------- 1 | {% INCLUDE 'overall_header.html' %} 2 |
    MCP Extension Template Test Passed!
    3 | {% INCLUDE 'overall_footer.html' %} 4 | -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-10425.txt: -------------------------------------------------------------------------------- 1 | http://ar.wikipedia.org/wiki/الصفحة_الرئيسية 2 | [url]http://ar.wikipedia.org/wiki/الصفحة_الرئيسية[/url] 3 | [url=http://ar.wikipedia.org/wiki/الصفحة_الرئيسية]link[/url] -------------------------------------------------------------------------------- /phpBB/styles/all/template/macros/icons/png.twig: -------------------------------------------------------------------------------- 1 | {% apply spaceless %} 2 | {{ TITLE }} 3 | {% endapply %} 4 | -------------------------------------------------------------------------------- /phpBB/adm/style/profilefields/text.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /tests/template/templates/include_loop.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | _ 4 | 5 | -------------------------------------------------------------------------------- /phpBB/config/test/config.yml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: ../default/config.yml } 3 | 4 | core: 5 | require_dev_dependencies: true 6 | allow_install_dir: true 7 | 8 | session: 9 | force_sid: false 10 | -------------------------------------------------------------------------------- /phpBB/language/en/email/acp_login.txt: -------------------------------------------------------------------------------- 1 | Subject: phpBB's Area51 Admin Control Panel Login 2 | 3 | The user "{USERNAME}" recently logged into the Admin Control Panel at {LOGIN_TIME} from the IP address {IP_ADDRESS}. 4 | 5 | {EMAIL_SIG} 6 | -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-13425.html: -------------------------------------------------------------------------------- 1 |
    :lol: starts with a smiley
    -------------------------------------------------------------------------------- /phpBB/cache/index.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /phpBB/ext/index.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /phpBB/files/index.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /phpBB/images/index.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /phpBB/store/index.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /tests/dbal/fixtures/migrator_config_text.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | config_name 5 | config_value 6 |
    7 |
    8 | -------------------------------------------------------------------------------- /tests/template/datasets/ext_trivial/ext/trivial/styles/all/template/event/test_event_subloop.html: -------------------------------------------------------------------------------- 1 | [{event_loop.S_ROW_COUNT}[subloop:{event_loop.subloop.S_ROW_COUNT}] 2 | ] 3 | -------------------------------------------------------------------------------- /tests/text_reparser/fixtures/config_text.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | config_name 5 | config_value 6 |
    7 |
    8 | -------------------------------------------------------------------------------- /phpBB/develop/set_permissions.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # set permissions required for installation 3 | 4 | dir=$(dirname $0) 5 | 6 | for file in cache files store config.php images/avatars/upload 7 | do 8 | chmod a+w $dir/../$file 9 | done 10 | -------------------------------------------------------------------------------- /phpBB/download/index.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /phpBB/images/icons/index.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /phpBB/images/ranks/index.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /phpBB/includes/index.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /phpBB/language/en/index.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /phpBB/language/index.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /phpBB/phpbb/auth/index.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /phpBB/styles/prosilver/template/mcp_message.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
    4 |

    {MESSAGE_TITLE}

    5 |

    {MESSAGE_TEXT}

    6 |
    7 | 8 | 9 | -------------------------------------------------------------------------------- /tests/controller/ext/vendor2/foo/config/routing_2.yml: -------------------------------------------------------------------------------- 1 | controller2: 2 | path: /bar 3 | defaults: { _controller: foo.controller:handle } 4 | controller3: 5 | path: /bar/p-{p} 6 | defaults: { _controller: foo.controller:handle } 7 | -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-9073.html: -------------------------------------------------------------------------------- 1 | http://www.xxxx-xx-xxxx.com/
    2 | http://www.xxxx-xx-xxxx.com/
    3 | -------------------------------------------------------------------------------- /phpBB/images/avatars/index.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /phpBB/images/icons/misc/index.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /phpBB/install/schemas/index.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /phpBB/language/en/acp/index.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /phpBB/language/en/email/index.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /phpBB/styles/prosilver/imgs/svg/star.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phpBB/images/avatars/gallery/index.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /phpBB/images/avatars/upload/index.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /phpBB/images/icons/smile/index.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /phpBB/install/convertors/index.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /phpBB/phpbb/auth/provider/index.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /phpBB/styles/prosilver/template/login_body_oauth.html: -------------------------------------------------------------------------------- 1 |
    2 |
    3 | {% for oauth in oauth %} 4 | {{ oauth.SERVICE_NAME }} 5 | {% endfor %} 6 |
    7 | -------------------------------------------------------------------------------- /tests/template/templates/loop_nested2_twig.html: -------------------------------------------------------------------------------- 1 | {% for outer_inner in outer %} 2 | o{{ outer_inner.S_ROW_COUNT }} 3 | {% for middle in outer_inner.middle %} 4 | m{{ middle.S_ROW_COUNT }}{{ outer_inner.S_ROW_COUNT }} 5 | {% endfor %} 6 | {% endfor %} 7 | -------------------------------------------------------------------------------- /phpBB/styles/prosilver/template/profilefields/text.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /tests/console/cron/fixtures/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | config_name 5 | config_value 6 | is_dynamic 7 |
    8 |
    9 | -------------------------------------------------------------------------------- /phpBB/adm/style/profilefields/url.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /phpBB/styles/prosilver/theme/tweaks.css: -------------------------------------------------------------------------------- 1 | /* -------------------------------------------------------------- /* 2 | $Tweaks 3 | /* -------------------------------------------------------------- /* 4 | /* -------------------------------------------------------------- */ 5 | -------------------------------------------------------------------------------- /tests/console/cron/tasks/simple_not_ready.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /phpBB/language/en/email/pm_report_deleted.txt: -------------------------------------------------------------------------------- 1 | Subject: Report deleted - "{PM_SUBJECT}" 2 | 3 | Hello {USERNAME}, 4 | 5 | The report you filed regarding the private message "{PM_SUBJECT}" at "{SITENAME}" was deleted by a moderator or administrator. 6 | 7 | {EMAIL_SIG} 8 | -------------------------------------------------------------------------------- /tests/pagination/config/test/routing/environment.yml: -------------------------------------------------------------------------------- 1 | core_controller: 2 | path: /test 3 | defaults: { _controller: core_foo.controller:bar, page: 1} 4 | core_page_controller: 5 | path: /test/page/{page} 6 | defaults: { _controller: core_foo.controller:bar} 7 | -------------------------------------------------------------------------------- /phpBB/adm/style/profilefields/string.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /phpBB/language/en/email/report_deleted.txt: -------------------------------------------------------------------------------- 1 | Subject: Report deleted - "{POST_SUBJECT}" 2 | 3 | Hello {USERNAME}, 4 | 5 | The report you filed on the post "{POST_SUBJECT}" in "{TOPIC_TITLE}" at "{SITENAME}" was deleted by a moderator or by an administrator. 6 | 7 | {EMAIL_SIG} 8 | -------------------------------------------------------------------------------- /phpBB/styles/all/template/macros/avatar.twig: -------------------------------------------------------------------------------- 1 | {% if SRC %}{{ lang(TITLE) }}{% endif %} 2 | -------------------------------------------------------------------------------- /phpBB/styles/prosilver/template/profilefields/url.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /tests/event/fixtures/extra_description.test: -------------------------------------------------------------------------------- 1 | dispatch('extra_description.dispatch'); 12 | -------------------------------------------------------------------------------- /phpBB/config/default/container/services_finder.yml: -------------------------------------------------------------------------------- 1 | services: 2 | finder.factory: 3 | class: phpbb\finder\factory 4 | arguments: 5 | - '@cache' 6 | - '%finder.cache%' 7 | - '%core.root_path%' 8 | - '%core.php_ext%' 9 | -------------------------------------------------------------------------------- /phpBB/config/default/routing/help.yml: -------------------------------------------------------------------------------- 1 | phpbb_help_bbcode_controller: 2 | path: /bbcode 3 | defaults: { _controller: phpbb.help.controller.bbcode:handle } 4 | 5 | phpbb_help_faq_controller: 6 | path: /faq 7 | defaults: { _controller: phpbb.help.controller.faq:handle } 8 | -------------------------------------------------------------------------------- /phpBB/styles/prosilver/imgs/svg/file-document-outline.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/template/templates/lang_twig.html: -------------------------------------------------------------------------------- 1 | {{ lang('VARIABLE') }} 2 | {{ lang('1_VARIABLE') }} 3 | 4 | {{ lang_js('VARIABLE') }} 5 | {{ lang_js('1_VARIABLE') }} 6 | 7 | {{ lang_raw('VARIABLE') }} 8 | {{ lang_raw('1_VARIABLE') }} 9 | {{ lang_raw('ARY_VARIABLE')|join('|') }} 10 | -------------------------------------------------------------------------------- /phpBB/adm/style/captcha_default_acp_demo.html: -------------------------------------------------------------------------------- 1 |
    2 |

    {L_CAPTCHA_PREVIEW_EXPLAIN}
    3 |
    {L_PREVIEW}
    4 |
    5 | -------------------------------------------------------------------------------- /phpBB/adm/style/message_body.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
    class="successbox"class="errorbox"> 4 |

    {MESSAGE_TITLE}

    5 |

    {MESSAGE_TEXT}

    6 |
    7 | 8 | 9 | -------------------------------------------------------------------------------- /phpBB/styles/prosilver/template/ucp_footer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | {% EVENT ucp_footer_content_after %} 4 | 5 | 6 | 7 | 8 |
    {S_FORM_TOKEN}
    9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /phpBB/adm/style/acp_php_info.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |

    {L_ACP_PHP_INFO}

    6 | 7 |

    {L_ACP_PHP_INFO_EXPLAIN}

    8 | 9 |
    10 | {PHPINFO} 11 |
    12 | 13 | 14 | -------------------------------------------------------------------------------- /phpBB/styles/prosilver/imgs/svg/toggle-on.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phpBB/styles/prosilver/template/captcha_incomplete.html: -------------------------------------------------------------------------------- 1 |
    2 |
    3 | 4 |

    {{ lang('CONFIRM_CODE') }}

    5 |

    {{ lang(CONFIRM_LANG, '', '') }}

    6 |
    7 |
    8 | -------------------------------------------------------------------------------- /phpBB/styles/prosilver/template/profilefields/int.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /tests/extension/ext/vendor/moo/ext.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | session_id 5 | session_user_id 6 | session_ip 7 | session_browser 8 |
    9 |
    10 | -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-10587.html: -------------------------------------------------------------------------------- 1 | http://example.org/?tourney[id]=34&action=brackets
    2 | link -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-14790.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phpBB/includes/utf/data/case_fold_s.php: -------------------------------------------------------------------------------- 1 | 'ᾀ','ᾉ'=>'ᾁ','ᾊ'=>'ᾂ','ᾋ'=>'ᾃ','ᾌ'=>'ᾄ','ᾍ'=>'ᾅ','ᾎ'=>'ᾆ','ᾏ'=>'ᾇ','ᾘ'=>'ᾐ','ᾙ'=>'ᾑ','ᾚ'=>'ᾒ','ᾛ'=>'ᾓ','ᾜ'=>'ᾔ','ᾝ'=>'ᾕ','ᾞ'=>'ᾖ','ᾟ'=>'ᾗ','ᾨ'=>'ᾠ','ᾩ'=>'ᾡ','ᾪ'=>'ᾢ','ᾫ'=>'ᾣ','ᾬ'=>'ᾤ','ᾭ'=>'ᾥ','ᾮ'=>'ᾦ','ᾯ'=>'ᾧ','ᾼ'=>'ᾳ','ῌ'=>'ῃ','ῼ'=>'ῳ'); 2 | -------------------------------------------------------------------------------- /phpBB/install/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /phpBB/styles/prosilver/template/profilefields/string.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /tests/extension/ext/vendor2/foo/ext.php: -------------------------------------------------------------------------------- 1 | 2 | zxc 3 | 4 | 5 | qwe 6 | 7 | {$INCLUDED_VALUE1} 8 | 9 | {$VALUE2} 10 | {$VALUE1} 11 | 12 | -------------------------------------------------------------------------------- /tests/template/templates/include_define_variable.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /tests/template/templates/define_advanced.html: -------------------------------------------------------------------------------- 1 | 2 | abc 3 | 4 | {$VALUE} 5 | 6 | bcd 7 | 8 | 9 | cde 10 | 11 | 12 | {$INCLUDED_VALUE3} 13 | -------------------------------------------------------------------------------- /phpBB/styles/prosilver/imgs/svg/file-document-box-outline.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/fixtures/ext/foo/foo/config/services.yml: -------------------------------------------------------------------------------- 1 | services: 2 | foo_foo.controller: 3 | class: foo\foo\controller\controller 4 | 5 | foo_foo.listener.template_event_order: 6 | class: foo\foo\event\template_event_order 7 | tags: 8 | - { name: event.listener } 9 | -------------------------------------------------------------------------------- /.devcontainer/resources/xdebug.ini: -------------------------------------------------------------------------------- 1 | zend_extension=xdebug.so 2 | 3 | [xdebug] 4 | xdebug.mode=develop,debug 5 | xdebug.discover_client_host=1 6 | xdebug.client_port=9003 7 | xdebug.start_with_request=yes 8 | xdebug.log='/var/log/xdebug/xdebug.log' 9 | xdebug.connect_timeout_ms=2000 10 | xdebug.idekey=VSCODE 11 | -------------------------------------------------------------------------------- /phpBB/language/en/email/report_pm.txt: -------------------------------------------------------------------------------- 1 | Subject: Private Message report - "{SUBJECT}" 2 | 3 | Hello {USERNAME}, 4 | 5 | A Private Message titled "{SUBJECT}" by "{AUTHOR_NAME}" at "{SITENAME}" was reported. 6 | 7 | If you want to view the report, click the following link: 8 | {U_VIEW_REPORT} 9 | 10 | {EMAIL_SIG} 11 | -------------------------------------------------------------------------------- /tests/template/templates/loop_nested_multilevel_ref.html: -------------------------------------------------------------------------------- 1 | top-level content 2 | 3 | outer {outer.VARIABLE} 4 | 5 | inner {inner.VARIABLE} 6 | 7 | first row 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /phpBB/ext/phpBB/sslAssets/ext.php: -------------------------------------------------------------------------------- 1 | http://www.phpbb.com/community/search.p ... mit=Search -------------------------------------------------------------------------------- /phpBB/adm/style/profilefields/dropdown.html: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /phpBB/language/en/email/topic_disapproved.txt: -------------------------------------------------------------------------------- 1 | Subject: Topic disapproved - "{TOPIC_TITLE}" 2 | 3 | Hello {USERNAME}, 4 | 5 | Your topic "{TOPIC_TITLE}" at "{SITENAME}" was disapproved by a moderator or administrator. 6 | 7 | The following reason was given for the disapproval: 8 | 9 | {REASON} 10 | 11 | {EMAIL_SIG} 12 | -------------------------------------------------------------------------------- /phpBB/language/en/email/user_activate.txt: -------------------------------------------------------------------------------- 1 | Subject: Reactivate your account 2 | 3 | Hello {USERNAME}, 4 | 5 | Your account on "{SITENAME}" has been deactivated, most likely due to changes made to your profile. In order to reactivate your account you must click on the link below: 6 | 7 | {U_ACTIVATE} 8 | 9 | {EMAIL_SIG} 10 | -------------------------------------------------------------------------------- /tests/controller/phpbb/controller/foo.php: -------------------------------------------------------------------------------- 1 | k: :ok: -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-7187.html: -------------------------------------------------------------------------------- 1 |
    :geek: :ugeek:
    -------------------------------------------------------------------------------- /phpBB/config/default/container/services_twig_extensions.yml: -------------------------------------------------------------------------------- 1 | # Twig extensions not needed by the installer 2 | 3 | services: 4 | template.twig.extensions.icon: 5 | class: phpbb\template\twig\extension\icon 6 | arguments: 7 | - '@user' 8 | tags: 9 | - { name: twig.extension } 10 | -------------------------------------------------------------------------------- /tests/controller/ext/vendor2/bar/controller.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | yesno 4 | 5 | 6 | 7 | 8 | 9 | yesno 10 | 11 | 12 | -------------------------------------------------------------------------------- /tests/template/templates/loop_expressions_twig.html: -------------------------------------------------------------------------------- 1 | {% for loop_inner in loop %} 2 | 3 | {% if loop_inner.S_ROW_NUM is divisible by(4) %}yes{% else %}no{% endif %} 4 | 5 | {% endfor %} 6 | 7 | {% for loop_inner in loop %} 8 | 9 | {% if loop_inner.S_ROW_NUM is divisible by(3) %}yes{% else %}no{% endif %} 10 | 11 | {% endfor %} 12 | -------------------------------------------------------------------------------- /tests/template/templates/loop_nested_multilevel_ref_twig.html: -------------------------------------------------------------------------------- 1 | top-level content 2 | {% for outer_inner in outer %} 3 | outer {{ outer_inner.VARIABLE }} 4 | {% for inner in outer_inner.inner %} 5 | inner {{ inner.VARIABLE }} 6 | {% if inner.S_FIRST_ROW %} 7 | first row 8 | {% endif %} 9 | {% endfor %} 10 | {% endfor %} 11 | -------------------------------------------------------------------------------- /phpBB/styles/prosilver/imgs/svg/file-document-box-multiple-outline.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phpBB/styles/prosilver/template/profilefields/dropdown.html: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /phpBB/styles/prosilver/imgs/svg/comment-text-outline.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /git-tools/hooks/uninstall: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # Script to uninstall the git hooks 4 | # 5 | # Usage (from within git-tools/hooks): 6 | # ./uninstall 7 | 8 | dir=$(dirname $0) 9 | 10 | for file in $(ls $dir) 11 | do 12 | if [ $file != "install" ] && [ $file != "uninstall" ] 13 | then 14 | rm -f "$dir/../../.git/hooks/$file" 15 | fi 16 | done 17 | -------------------------------------------------------------------------------- /phpBB/styles/prosilver/template/ucp_profile_avatar.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
    4 | 5 |

    {L_TITLE}

    6 | 7 | 8 | 9 | {S_HIDDEN_FIELDS} 10 | {S_FORM_TOKEN} 11 |
    12 | 13 | 14 | -------------------------------------------------------------------------------- /phpBB/styles/prosilver/template/viewonline_whois.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |

    {L_WHOIS}

    4 | 5 |
    6 |
    7 |
    {WHOIS}
    8 |
    9 |
    10 | {L_CLOSE_WINDOW} 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/controller/ext/vendor2/foo/config/routing.yml: -------------------------------------------------------------------------------- 1 | controller1: 2 | path: /foo 3 | defaults: { _controller: foo.controller:handle } 4 | 5 | include_controller2: 6 | resource: "routing_2.yml" 7 | prefix: /foo 8 | 9 | controller4: 10 | path: /foo/%core.environment% 11 | defaults: { _controller: foo.controller:handle } 12 | -------------------------------------------------------------------------------- /tests/template/templates/svg/pencil.svg: -------------------------------------------------------------------------------- 1 | My fake title! 2 | -------------------------------------------------------------------------------- /phpBB/adm/style/timezone.js: -------------------------------------------------------------------------------- 1 | /* global phpbb */ 2 | 3 | (function($) { // Avoid conflicts with other libraries 4 | 'use strict'; 5 | 6 | $('#tz_date').change(() => { 7 | phpbb.timezoneSwitchDate(false); 8 | }); 9 | 10 | $(document).ready( 11 | phpbb.timezoneEnableDateSelection, 12 | ); 13 | })(jQuery); // Avoid conflicts with other libraries 14 | -------------------------------------------------------------------------------- /phpBB/styles/prosilver/imgs/svg/lock.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cron/tasks/simple_not_runnable.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | config_name 5 | config_value 6 | is_dynamic 7 | 8 | foo_lock 9 | 1 abcd 10 | 1 11 | 12 |
    13 |
    14 | -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-15016.html: -------------------------------------------------------------------------------- 1 | )--( )-( )-- -------------------------------------------------------------------------------- /phpBB/language/en/email/group_request.txt: -------------------------------------------------------------------------------- 1 | Subject: A request to join your group has been made 2 | 3 | Dear {USERNAME}, 4 | 5 | The user "{REQUEST_USERNAME}" has requested to join the group "{GROUP_NAME}" you moderate on "{SITENAME}". 6 | To approve or deny this request for group membership please visit the following link: 7 | 8 | {U_PENDING} 9 | 10 | {EMAIL_SIG} 11 | -------------------------------------------------------------------------------- /phpBB/language/en/email/report_post.txt: -------------------------------------------------------------------------------- 1 | Subject: Post report - "{TOPIC_TITLE}" 2 | 3 | Hello {USERNAME}, 4 | 5 | The post "{POST_SUBJECT}" at "{SITENAME}" was reported. 6 | 7 | If you want to view the report, click the following link: 8 | {U_VIEW_REPORT} 9 | 10 | If you want to view the post, click the following link: 11 | {U_VIEW_POST} 12 | 13 | {EMAIL_SIG} 14 | -------------------------------------------------------------------------------- /tests/template/templates/includecss_twig.html: -------------------------------------------------------------------------------- 1 | {% if TEST === 1 %} 2 | {% INCLUDECSS('child_only.css') %} 3 | {% elseif TEST === 2 %} 4 | {% INCLUDECSS('parent_only.css') %} 5 | {% elseif TEST === 3 %} 6 | {% INCLUDECSS('@include_css/test.css') %} 7 | {% elseif TEST === 4 %} 8 | {% INCLUDECSS('@include_css/child_only.css') %} 9 | {% endif %} 10 | {$STYLESHEETS} 11 | -------------------------------------------------------------------------------- /phpBB/language/en/email/post_in_queue.txt: -------------------------------------------------------------------------------- 1 | Subject: Post needs approval - "{TOPIC_TITLE}" 2 | 3 | Hello {USERNAME}, 4 | 5 | The post "{POST_SUBJECT}" at "{SITENAME}" needs approval. 6 | 7 | If you want to view the post, click the following link: 8 | {U_VIEW_POST} 9 | 10 | If you want to view the topic, click the following link: 11 | {U_TOPIC} 12 | 13 | {EMAIL_SIG} 14 | -------------------------------------------------------------------------------- /phpBB/language/en/email/topic_in_queue.txt: -------------------------------------------------------------------------------- 1 | Subject: Topic needs approval - "{TOPIC_TITLE}" 2 | 3 | Hello {USERNAME}, 4 | 5 | The topic "{TOPIC_TITLE}" at "{SITENAME}" needs approval. 6 | 7 | If you want to view the topic, click the following link: 8 | {U_VIEW_TOPIC} 9 | 10 | If you want to view the forum, click the following link: 11 | {U_FORUM} 12 | 13 | {EMAIL_SIG} 14 | -------------------------------------------------------------------------------- /phpBB/styles/all/imgs/svg/404.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /phpBB/styles/all/template/macros/icons/font.twig: -------------------------------------------------------------------------------- 1 | {% apply spaceless %} 2 | {% if TITLE %}{{ TITLE }}{% endif %} 3 | {% endapply %} 4 | -------------------------------------------------------------------------------- /tests/template/templates/includecss.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | {$STYLESHEETS} 11 | -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-15261.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | word_id 5 | word 6 | replacement 7 | 8 | 9 | 1 10 | <*> 11 | **** 12 | 13 |
    14 |
    15 | -------------------------------------------------------------------------------- /phpBB/install/phpinfo.php: -------------------------------------------------------------------------------- 1 | 7 | * @license GNU General Public License, version 2 (GPL-2.0) 8 | * 9 | * For full copyright and license information, please see 10 | * the docs/CREDITS.txt file. 11 | * 12 | */ 13 | 14 | phpinfo(); 15 | -------------------------------------------------------------------------------- /phpBB/language/en/email/group_added.txt: -------------------------------------------------------------------------------- 1 | Subject: You have been added to this usergroup 2 | 3 | Congratulations, 4 | 5 | You have been added to the "{GROUP_NAME}" group on "{SITENAME}". 6 | This action was done by a group leader or the site administrator, contact them for more information. 7 | 8 | You can view your groups information here: 9 | {U_GROUP} 10 | 11 | {EMAIL_SIG} 12 | -------------------------------------------------------------------------------- /phpBB/language/en/email/user_activate_inactive.txt: -------------------------------------------------------------------------------- 1 | Subject: Your account has been deactivated 2 | 3 | Hello {USERNAME}, 4 | 5 | Your account on "{SITENAME}" has been deactivated, most likely due to changes made to your profile. The administrator of the board will need to activate it before you can log in. You will receive another notification when this has occurred. 6 | 7 | {EMAIL_SIG} 8 | -------------------------------------------------------------------------------- /tests/extension/ext/vendor3/foo/ext.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
    5 | 6 |
    7 | 8 |
    9 | 10 |
    11 | 12 |
    13 |
    14 | -------------------------------------------------------------------------------- /.github/setup-unbuffer.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # This file is part of the phpBB Forum Software package. 4 | # 5 | # @copyright (c) phpBB Limited 6 | # @license GNU General Public License, version 2 (GPL-2.0) 7 | # 8 | # For full copyright and license information, please see 9 | # the docs/CREDITS.txt file. 10 | # 11 | set -e 12 | 13 | sudo apt-get install -y expect-dev 14 | -------------------------------------------------------------------------------- /phpBB/adm/style/captcha_qa_acp_demo.html: -------------------------------------------------------------------------------- 1 |
    2 |

    {L_CONFIRM_QUESTION_EXPLAIN}
    3 | 4 |
    5 | 6 |
    7 |
    8 | -------------------------------------------------------------------------------- /phpBB/config/default/container/services_filesystem.yml: -------------------------------------------------------------------------------- 1 | parameters: 2 | core.filesystem.cache_temp_dir: '%core.cache_dir%tmp/' 3 | 4 | services: 5 | filesystem: 6 | class: phpbb\filesystem\filesystem 7 | 8 | filesystem.temp: 9 | class: phpbb\filesystem\temp 10 | arguments: 11 | - '@filesystem' 12 | - '%core.filesystem.cache_temp_dir%' 13 | -------------------------------------------------------------------------------- /tests/extension/ext/vendor5/foo/ext.php: -------------------------------------------------------------------------------- 1 |
    !
    Moderatoropmerking from: neufke
    Mod Remark
    2 |
    !
    Moderatoropmerking from: neufke
    Mod Remark
    -------------------------------------------------------------------------------- /tests/extension/ext/vendor2/bar/acp/a_info.php: -------------------------------------------------------------------------------- 1 | 'vendor2\\bar\\acp\\a_module', 11 | 'title' => 'Bar', 12 | 'modes' => array( 13 | 'config' => array('title' => 'Config', 'auth' => '', 'cat' => array('ACP_MODS')), 14 | ), 15 | ); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # This file is for standardising the coding style between different editors 2 | # http://editorconfig.org/ 3 | 4 | root = true 5 | 6 | [*] 7 | end_of_line = lf 8 | indent_size = 4 9 | indent_style = tab 10 | insert_final_newline = true 11 | trim_trailing_whitespace = true 12 | 13 | [*.md] 14 | trim_trailing_whitespace = false 15 | 16 | [*.yml] 17 | indent_size = 4 18 | indent_style = space 19 | -------------------------------------------------------------------------------- /phpBB/language/en/email/test.txt: -------------------------------------------------------------------------------- 1 | Subject: phpBB is correctly configured to send emails 2 | 3 | Hello {USERNAME}, 4 | 5 | Congratulations. If you received this email, phpBB is correctly configured to send emails. 6 | 7 | 8 | {MESSAGE} 9 | 10 | 11 | In case you require assistance, please visit the phpBB support forums - https://www.phpbb.com/community/ 12 | 13 | {EMAIL_SIG} 14 | -------------------------------------------------------------------------------- /tests/extension/ext/vendor2/foo/mcp/a_info.php: -------------------------------------------------------------------------------- 1 | 'vendor2\\foo\\mcp\\a_module', 11 | 'title' => 'Foobar', 12 | 'modes' => array( 13 | 'config' => array('title' => 'Config', 'auth' => '', 'cat' => array('MCP_MAIN')), 14 | ), 15 | ); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /.github/setup-exiftool.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # This file is part of the phpBB Forum Software package. 4 | # 5 | # @copyright (c) phpBB Limited 6 | # @license GNU General Public License, version 2 (GPL-2.0) 7 | # 8 | # For full copyright and license information, please see 9 | # the docs/CREDITS.txt file. 10 | # 11 | set -e 12 | 13 | sudo apt-get install -y parallel libimage-exiftool-perl 14 | -------------------------------------------------------------------------------- /phpBB/adm/style/detailed_message_body.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
    4 |

    {{ MESSAGE_TITLE }}

    5 |

    {{ MESSAGE_TEXT }}

    6 |
    7 | 8 |
    9 |
    10 |
    {{ MESSAGE_DETAIL }}
    11 |
    12 |
    13 | 14 | 15 | -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-9073.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | word_id 5 | word 6 | replacement 7 | 8 | 9 | 1 10 | http://www.some-ad-site.com* 11 | http://www.xxxx-xx-xxxx.com 12 | 13 |
    14 |
    15 | -------------------------------------------------------------------------------- /tests/tree/fixtures/phpbb_forums.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | forum_id 5 | parent_id 6 | left_id 7 | right_id 8 | forum_parents 9 | forum_name 10 | forum_desc 11 | forum_rules 12 |
    13 |
    14 | -------------------------------------------------------------------------------- /.github/phing-sniff.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # This file is part of the phpBB Forum Software package. 4 | # 5 | # @copyright (c) phpBB Limited 6 | # @license GNU General Public License, version 2 (GPL-2.0) 7 | # 8 | # For full copyright and license information, please see 9 | # the docs/CREDITS.txt file. 10 | # 11 | set -e 12 | set -x 13 | 14 | cd build 15 | ../phpBB/vendor/bin/phing sniff 16 | cd .. 17 | -------------------------------------------------------------------------------- /git-tools/hooks/install: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # Script to install the git hooks 4 | # by symlinking them into the .git/hooks directory 5 | # 6 | # Usage (from within git-tools/hooks): 7 | # ./install 8 | 9 | dir=$(dirname $0) 10 | 11 | for file in $(ls $dir) 12 | do 13 | if [ $file != "install" ] && [ $file != "uninstall" ] 14 | then 15 | ln -s "../../git-tools/hooks/$file" "$dir/../../.git/hooks/$file" 16 | fi 17 | done 18 | -------------------------------------------------------------------------------- /tests/extension/ext/vendor2/foo/acp/a_info.php: -------------------------------------------------------------------------------- 1 | 'vendor2\\foo\\acp\\a_module', 11 | 'title' => 'Foobar', 12 | 'modes' => array( 13 | 'config' => array('title' => 'Config', 'auth' => 'ext_vendor2/foo', 'cat' => array('ACP_MODS')), 14 | ), 15 | ); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /phpBB/language/en/email/admin_welcome_activated.txt: -------------------------------------------------------------------------------- 1 | Subject: Account activated 2 | 3 | Hello {USERNAME}, 4 | 5 | Your account on "{SITENAME}" has been activated by an administrator, you may login now. 6 | 7 | Your password has been securely stored in our database and cannot be retrieved. In the event that it is forgotten, you will be able to reset it using the email address associated with your account. 8 | 9 | {EMAIL_SIG} 10 | -------------------------------------------------------------------------------- /phpBB/config/default/routing/storage.yml: -------------------------------------------------------------------------------- 1 | phpbb_storage_avatar: 2 | path: /avatar/{file} 3 | defaults: 4 | _controller: storage.controller.avatar:handle 5 | 6 | phpbb_storage_attachment: 7 | path: /attachment/{id}/{filename} 8 | defaults: 9 | filename: '' 10 | _controller: storage.controller.attachment:handle_attachment 11 | requirements: 12 | id: \d+ 13 | -------------------------------------------------------------------------------- /phpBB/adm/style/captcha_recaptcha_v3.html: -------------------------------------------------------------------------------- 1 | {% if S_RECAPTCHA_AVAILABLE %} 2 |
    3 |
     
    4 |
    5 | 8 | 9 | {{ lang('RECAPTCHA_INVISIBLE') }} 10 | 11 |
    12 |
    13 | {% else %} 14 | {{ lang('RECAPTCHA_NOT_AVAILABLE') }} 15 | {% endif %} 16 | -------------------------------------------------------------------------------- /phpBB/styles/prosilver/template/ucp_auth_link.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |

    {L_UCP_AUTH_LINK_TITLE}

    4 | 5 |
    6 |
    7 |
    {ERROR}
    8 | 9 | 10 | 11 | 12 |
    13 |
    14 | 15 | 16 | -------------------------------------------------------------------------------- /tests/di/fixtures/config.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
    {redirects.URL}
    4 | 5 | 6 |
    {redirects_expected.URL}
    7 | 8 | 9 | -------------------------------------------------------------------------------- /tests/template/templates/basic.html: -------------------------------------------------------------------------------- 1 | 2 | fail 3 | 4 | 5 | pass 6 | 7 | 8 | fail 9 | 10 | fail 11 | 12 | pass 13 | 14 | 15 | fail 16 | 17 | pass 18 | 19 | 20 | pass 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /tests/template/templates/svg/phone.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /phpBB/adm/style/captcha_recaptcha.html: -------------------------------------------------------------------------------- 1 |
    2 |
    3 | 6 | 7 | {L_RECAPTCHA_INVISIBLE} 8 | 9 |
    10 |
    11 |
    12 | -------------------------------------------------------------------------------- /phpBB/styles/all/template/cron.html: -------------------------------------------------------------------------------- 1 | {# 2 | Runs the cron task by triggering server request to the URL on load. `img` is 3 | preferred over JS to ensure maximum compatibility. We use `class="sr-only"` 4 | to hide visually and `aria-hidden="true"` to hide from screen-readers; using 5 | `hidden` or `display: none` would prevent the task from running. 6 | #} 7 | 8 | -------------------------------------------------------------------------------- /phpBB/styles/all/template/macros/icons/svg.twig: -------------------------------------------------------------------------------- 1 | {% apply spaceless %} 2 | 7 | {% endapply %} 8 | -------------------------------------------------------------------------------- /tests/acp_board/auth_provider/invalid.php: -------------------------------------------------------------------------------- 1 | 7 | * @license GNU General Public License, version 2 (GPL-2.0) 8 | * 9 | * For full copyright and license information, please see 10 | * the docs/CREDITS.txt file. 11 | * 12 | */ 13 | 14 | namespace phpbb\auth\provider\acp; 15 | 16 | class board_invalid 17 | { 18 | 19 | } 20 | -------------------------------------------------------------------------------- /tests/cache/fixtures/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | config_name 5 | config_value 6 | is_dynamic 7 | 8 | foo 9 | 23 10 | 0 11 | 12 | 13 | bar 14 | 42 15 | 1 16 | 17 |
    18 |
    19 | -------------------------------------------------------------------------------- /tests/config/fixtures/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | config_name 5 | config_value 6 | is_dynamic 7 | 8 | foo 9 | 23 10 | 0 11 | 12 | 13 | bar 14 | 42 15 | 1 16 | 17 |
    18 |
    19 | -------------------------------------------------------------------------------- /tests/template/templates/loop_nested_deep_multilevel_ref_twig.html: -------------------------------------------------------------------------------- 1 | top-level content 2 | {% for outer_inner in outer %} 3 | outer 4 | {% for middle in outer_inner.middle %} 5 | {{ middle.S_BLOCK_NAME }} 6 | {% for inner in middle.inner %} 7 | inner {{ inner.VARIABLE }} 8 | {% if inner.S_FIRST_ROW %} 9 | first row of {{ inner.S_NUM_ROWS }} in {{ inner.S_BLOCK_NAME }} 10 | {% endif %} 11 | {% endfor %} 12 | {% endfor %} 13 | {% endfor %} 14 | -------------------------------------------------------------------------------- /phpBB/phpbb/groupposition/exception.php: -------------------------------------------------------------------------------- 1 | 7 | * @license GNU General Public License, version 2 (GPL-2.0) 8 | * 9 | * For full copyright and license information, please see 10 | * the docs/CREDITS.txt file. 11 | * 12 | */ 13 | 14 | namespace phpbb\groupposition; 15 | 16 | class exception extends \Exception 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /tests/template/templates/loop.html: -------------------------------------------------------------------------------- 1 | 2 | loop 3 | 4 | noloop 5 | 6 | 7 | 8 | loop 9 | 10 | noloop 11 | 12 | 13 | 14 | loop 15 | 16 | 17 | 18 | 19 | loop#{test_loop.S_ROW_COUNT}-block#{block.S_ROW_COUNT} 20 | 21 | 22 | -------------------------------------------------------------------------------- /tests/template/templates/loop_nested_deep_multilevel_ref.html: -------------------------------------------------------------------------------- 1 | top-level content 2 | 3 | outer 4 | 5 | {outer.middle.S_BLOCK_NAME} 6 | 7 | inner {inner.VARIABLE} 8 | 9 | first row of {outer.middle.inner.S_NUM_ROWS} in {middle.inner.S_BLOCK_NAME} 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /phpBB/language/en/email/admin_send_email.txt: -------------------------------------------------------------------------------- 1 | 2 | The following is an email sent to you by an administrator of "{SITENAME}". If this message is spam, contains abusive or other comments you find offensive please contact the webmaster of the board at the following address: 3 | 4 | {CONTACT_EMAIL} 5 | 6 | Include this full email (particularly the headers). 7 | 8 | Message sent to you follows: 9 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 10 | 11 | {MESSAGE} 12 | 13 | {EMAIL_SIG} 14 | -------------------------------------------------------------------------------- /tests/dbal/fixtures/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | config_name 5 | config_value 6 | is_dynamic 7 | 8 | config1 9 | foo 10 | 0 11 | 12 | 13 | config2 14 | bar 15 | 1 16 | 17 |
    18 |
    19 | -------------------------------------------------------------------------------- /tests/extension/fixtures/extensions.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ext_name 5 | ext_active 6 | ext_state 7 | 8 | vendor2/foo 9 | 1 10 | 11 | 12 | 13 | vendor/moo 14 | 0 15 | 16 | 17 |
    18 |
    19 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | ## CONTRIBUTE 2 | 3 | 1. [Create an account on phpBB.com](http://www.phpbb.com/community/ucp.php?mode=register) 4 | 2. [Create a ticket (unless there already is one)](http://tracker.phpbb.com/secure/CreateIssue!default.jspa) 5 | 3. Read our [Coding guidelines](https://area51.phpbb.com/docs/dev/master/development/coding_guidelines.html) and [Git Contribution Guidelines](https://area51.phpbb.com/docs/dev/master/development/git.html) 6 | 4. Send us a pull request 7 | -------------------------------------------------------------------------------- /tests/config/fixtures/config_text.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | config_name 5 | config_value 6 | 7 | foo 8 | 23 9 | 10 | 11 | bar 12 | 42 13 | 14 | 15 | meh 16 | string-de-ding 17 | 18 |
    19 |
    20 | -------------------------------------------------------------------------------- /phpBB/config/default/container/services_updater.yml: -------------------------------------------------------------------------------- 1 | services: 2 | updater.get_updates: 3 | class: phpbb\update\get_updates 4 | arguments: 5 | - '@filesystem' 6 | - '%packages.public_key%' 7 | - '%core.root_path%' 8 | 9 | updater.controller: 10 | class: phpbb\update\controller 11 | arguments: 12 | - '@filesystem' 13 | - '@updater.get_updates' 14 | - '%core.root_path%' 15 | -------------------------------------------------------------------------------- /tests/template/templates/loop_twig.html: -------------------------------------------------------------------------------- 1 | {% for test_loop_inner in test_loop %} 2 | loop 3 | {% else %} 4 | noloop 5 | {% endfor %} 6 | 7 | {% if test_loop|length %} 8 | loop 9 | {% else %} 10 | noloop 11 | {% endif %} 12 | 13 | {% if test_loop|length == 2 %} 14 | loop 15 | {% endif %} 16 | 17 | {% for test_loop_inner in test_loop %} 18 | {% for block_inner in block %} 19 | loop#{{ test_loop_inner.S_ROW_COUNT }}-block#{{ block_inner.S_ROW_COUNT }} 20 | {% endfor %} 21 | {% endfor %} 22 | -------------------------------------------------------------------------------- /tests/extension/ext/vendor2/bar/ext.php: -------------------------------------------------------------------------------- 1 | 7 | * @license GNU General Public License, version 2 (GPL-2.0) 8 | * 9 | * For full copyright and license information, please see 10 | * the docs/CREDITS.txt file. 11 | * 12 | */ 13 | 14 | function before_assert_phpbb3_16252($vars) 15 | { 16 | $vars['parser']->disable_bbcode('url'); 17 | } 18 | -------------------------------------------------------------------------------- /phpBB/language/en/email/user_forgot_password.txt: -------------------------------------------------------------------------------- 1 | Subject: Account password reset 2 | 3 | Hello {USERNAME} 4 | 5 | You are receiving this notification because you have requested to recover a forgotten password for your account on "{SITENAME}". 6 | 7 | To reset your password, please click the link provided below: 8 | 9 | {U_RESET_PASSWORD} 10 | 11 | If you did not authorize the request you can ignore this email. Please contact the board administrator if you keep receiving it. 12 | 13 | {EMAIL_SIG} 14 | -------------------------------------------------------------------------------- /tests/extension/ext/vendor2/bar/migrations/migration.php: -------------------------------------------------------------------------------- 1 | 7 | * @license GNU General Public License, version 2 (GPL-2.0) 8 | * 9 | * For full copyright and license information, please see 10 | * the docs/CREDITS.txt file. 11 | * 12 | */ 13 | 14 | namespace vendor2\bar\migrations; 15 | 16 | class migration extends \phpbb\db\migration\migration 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /tests/log/fixtures/empty_log.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | log_id 5 | log_type 6 | user_id 7 | forum_id 8 | topic_id 9 | post_id 10 | reportee_id 11 | log_ip 12 | log_time 13 | log_operation 14 | log_data 15 |
    16 |
    17 | -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-15008.before.php: -------------------------------------------------------------------------------- 1 | 7 | * @license GNU General Public License, version 2 (GPL-2.0) 8 | * 9 | * For full copyright and license information, please see 10 | * the docs/CREDITS.txt file. 11 | * 12 | */ 13 | 14 | function before_assert_phpbb3_15008($vars) 15 | { 16 | extract($vars); 17 | $parser->disable_smilies(); 18 | } 19 | -------------------------------------------------------------------------------- /phpBB/phpbb/di/exception/service_not_found_exception.php: -------------------------------------------------------------------------------- 1 | 7 | * @license GNU General Public License, version 2 (GPL-2.0) 8 | * 9 | * For full copyright and license information, please see 10 | * the docs/CREDITS.txt file. 11 | * 12 | */ 13 | 14 | namespace phpbb\di\exception; 15 | 16 | class service_not_found_exception extends di_exception 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /tests/template/templates/loop_underscore.html: -------------------------------------------------------------------------------- 1 | 2 | loop 3 | 4 | noloop 5 | 6 | 7 | 8 | loop 9 | 10 | noloop 11 | 12 | 13 | 14 | loop 15 | 16 | 17 | 18 | 19 | loop#{loop.S_ROW_COUNT}-block#{block.S_ROW_COUNT} 20 | 21 | 22 | -------------------------------------------------------------------------------- /phpBB/phpbb/storage/update_type.php: -------------------------------------------------------------------------------- 1 | 7 | * @license GNU General Public License, version 2 (GPL-2.0) 8 | * 9 | * For full copyright and license information, please see 10 | * the docs/CREDITS.txt file. 11 | * 12 | */ 13 | 14 | namespace phpbb\storage; 15 | 16 | enum update_type: int 17 | { 18 | case CONFIG = 0; 19 | case COPY = 1; 20 | case MOVE = 2; 21 | } 22 | -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-10268.html: -------------------------------------------------------------------------------- 1 |
    2 |
    3 | http://phpbb.com
    4 | http://phpbb.com
    5 | -------------------------------------------------------------------------------- /phpBB/phpbb/feed/exception/unauthorized_exception.php: -------------------------------------------------------------------------------- 1 | 7 | * @license GNU General Public License, version 2 (GPL-2.0) 8 | * 9 | * For full copyright and license information, please see 10 | * the docs/CREDITS.txt file. 11 | * 12 | */ 13 | 14 | namespace phpbb\feed\exception; 15 | 16 | abstract class unauthorized_exception extends feed_exception 17 | { 18 | 19 | } 20 | -------------------------------------------------------------------------------- /tests/mock/controller_helper.php: -------------------------------------------------------------------------------- 1 | 7 | * @license GNU General Public License, version 2 (GPL-2.0) 8 | * 9 | * For full copyright and license information, please see 10 | * the docs/CREDITS.txt file. 11 | * 12 | */ 13 | 14 | class phpbb_mock_controller_helper extends \phpbb\controller\helper 15 | { 16 | public function get_current_url() 17 | { 18 | return ''; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /tests/template/templates/loop_nested_twig.html: -------------------------------------------------------------------------------- 1 | {% for outer_inner in outer %} 2 | outer - {{ outer_inner.S_ROW_COUNT }}{% if outer_inner.VARIABLE %} - {{ outer_inner.VARIABLE }}{% endif %}{% if TEST_MORE %}[{{ outer_inner.S_BLOCK_NAME }}|{{ outer_inner.S_NUM_ROWS }}]{% endif %} 3 | {% for middle in outer_inner.middle %} 4 | middle - {{ middle.S_ROW_COUNT }}{% if middle.VARIABLE %} - {{ middle.VARIABLE }}{% endif %}{% if TEST_MORE %}[{{ middle.S_BLOCK_NAME }}|{{ middle.S_NUM_ROWS }}]{% endif %} 5 | {% endfor %} 6 | {% endfor %} 7 | -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-10989.txt: -------------------------------------------------------------------------------- 1 | [quote="Lorem"][quote="Lorem"[quote] Suspendisse iaculis porta tempor. Nulla.[/quote] 2 | Nullam a tortor sit amet.[/quote] 3 | Proin ac mi eget magna. 4 | 5 | [quote="Lorem"]Quisque fermentum tortor quis odio scelerisque consequat fermentum urna gravida. In semper vehicula condimentum. Donec suscipit ante imperdiet augue rhoncus.[/quote] 6 | 7 | 8 | Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Maecenas quis odio orci, sit amet semper. -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-16252.after.php: -------------------------------------------------------------------------------- 1 | 7 | * @license GNU General Public License, version 2 (GPL-2.0) 8 | * 9 | * For full copyright and license information, please see 10 | * the docs/CREDITS.txt file. 11 | * 12 | */ 13 | 14 | function after_assert_phpbb3_16252($vars) 15 | { 16 | extract($vars); 17 | $test->assertEmpty($parser->get_errors()); 18 | } 19 | -------------------------------------------------------------------------------- /tests/wrapper/phpbb_php_ini_fake.php: -------------------------------------------------------------------------------- 1 | 7 | * @license GNU General Public License, version 2 (GPL-2.0) 8 | * 9 | * For full copyright and license information, please see 10 | * the docs/CREDITS.txt file. 11 | * 12 | */ 13 | 14 | class phpbb_php_ini_fake extends \bantu\IniGetWrapper\IniGetWrapper 15 | { 16 | function get($varname) 17 | { 18 | return $varname; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Checklist: 2 | 3 | - [ ] Correct branch: master for new features; 3.3.x for fixes 4 | - [ ] Tests pass 5 | - [ ] Code follows coding guidelines: [master](https://area51.phpbb.com/docs/master/coding-guidelines.html) and [3.3.x](https://area51.phpbb.com/docs/dev/3.3.x/development/coding_guidelines.html) 6 | - [ ] Commit follows commit message [format](https://area51.phpbb.com/docs/dev/3.3.x/development/git.html) 7 | 8 | Tracker ticket: 9 | 10 | https://tracker.phpbb.com/browse/PHPBB-12345 11 | -------------------------------------------------------------------------------- /phpBB/phpbb/module/exception/module_exception.php: -------------------------------------------------------------------------------- 1 | 7 | * @license GNU General Public License, version 2 (GPL-2.0) 8 | * 9 | * For full copyright and license information, please see 10 | * the docs/CREDITS.txt file. 11 | * 12 | */ 13 | 14 | namespace phpbb\module\exception; 15 | 16 | class module_exception extends \phpbb\exception\runtime_exception 17 | { 18 | 19 | } 20 | -------------------------------------------------------------------------------- /phpBB/phpbb/module/exception/module_not_found_exception.php: -------------------------------------------------------------------------------- 1 | 7 | * @license GNU General Public License, version 2 (GPL-2.0) 8 | * 9 | * For full copyright and license information, please see 10 | * the docs/CREDITS.txt file. 11 | * 12 | */ 13 | 14 | namespace phpbb\module\exception; 15 | 16 | class module_not_found_exception extends module_exception 17 | { 18 | 19 | } 20 | -------------------------------------------------------------------------------- /phpBB/phpbb/search/exception/action_in_progress_exception.php: -------------------------------------------------------------------------------- 1 | 7 | * @license GNU General Public License, version 2 (GPL-2.0) 8 | * 9 | * For full copyright and license information, please see 10 | * the docs/CREDITS.txt file. 11 | * 12 | */ 13 | 14 | namespace phpbb\search\exception; 15 | 16 | class action_in_progress_exception extends search_exception 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /phpBB/phpbb/storage/exception/action_in_progress_exception.php: -------------------------------------------------------------------------------- 1 | 7 | * @license GNU General Public License, version 2 (GPL-2.0) 8 | * 9 | * For full copyright and license information, please see 10 | * the docs/CREDITS.txt file. 11 | * 12 | */ 13 | 14 | namespace phpbb\storage\exception; 15 | 16 | class action_in_progress_exception extends storage_exception 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /phpBB/styles/all/template/macros/forms/textarea.twig: -------------------------------------------------------------------------------- 1 | {% apply replace({"\n": ' ', '\t': ''}) %} 2 | 12 | -------------------------------------------------------------------------------- /tests/mimetype/incorrect_guesser.php: -------------------------------------------------------------------------------- 1 | 7 | * @license GNU General Public License, version 2 (GPL-2.0) 8 | * 9 | * For full copyright and license information, please see 10 | * the docs/CREDITS.txt file. 11 | * 12 | */ 13 | 14 | namespace phpbb\mimetype; 15 | 16 | class incorrect_guesser 17 | { 18 | public function guess($file) 19 | { 20 | return 'image/jpeg'; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /phpBB/adm/style/installer_update.html: -------------------------------------------------------------------------------- 1 | 2 |

    {TITLE}

    3 |

    {CONTENT}

    4 | 5 |
    6 |
    7 | {L_SUBMIT} 8 | 9 |
    10 |
    11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /phpBB/phpbb/di/exception/multiple_service_definitions_exception.php: -------------------------------------------------------------------------------- 1 | 7 | * @license GNU General Public License, version 2 (GPL-2.0) 8 | * 9 | * For full copyright and license information, please see 10 | * the docs/CREDITS.txt file. 11 | * 12 | */ 13 | 14 | namespace phpbb\di\exception; 15 | 16 | class multiple_service_definitions_exception extends di_exception 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /phpBB/phpbb/feed/exception/feed_unavailable_exception.php: -------------------------------------------------------------------------------- 1 | 7 | * @license GNU General Public License, version 2 (GPL-2.0) 8 | * 9 | * For full copyright and license information, please see 10 | * the docs/CREDITS.txt file. 11 | * 12 | */ 13 | 14 | namespace phpbb\feed\exception; 15 | 16 | abstract class feed_unavailable_exception extends feed_exception 17 | { 18 | 19 | } 20 | -------------------------------------------------------------------------------- /phpBB/phpbb/search/exception/no_action_in_progress_exception.php: -------------------------------------------------------------------------------- 1 | 7 | * @license GNU General Public License, version 2 (GPL-2.0) 8 | * 9 | * For full copyright and license information, please see 10 | * the docs/CREDITS.txt file. 11 | * 12 | */ 13 | 14 | namespace phpbb\search\exception; 15 | 16 | class no_action_in_progress_exception extends search_exception 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /tests/template/templates/loop_underscore_twig.html: -------------------------------------------------------------------------------- 1 | {% for _underscore_loop_inner in _underscore_loop %} 2 | loop 3 | {% else %} 4 | noloop 5 | {% endfor %} 6 | 7 | {% if _underscore_loop|length %} 8 | loop 9 | {% else %} 10 | noloop 11 | {% endif %} 12 | 13 | {% if _underscore_loop|length == 2 %} 14 | loop 15 | {% endif %} 16 | 17 | {% for _underscore_loop_inner in _underscore_loop %} 18 | {% for block_inner in block %} 19 | loop#{{ loop.S_ROW_COUNT }}-block#{{ block_inner.S_ROW_COUNT }} 20 | {% endfor %} 21 | {% endfor %} 22 | -------------------------------------------------------------------------------- /.github/check-image-icc-profiles.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # This file is part of the phpBB Forum Software package. 4 | # 5 | # @copyright (c) phpBB Limited 6 | # @license GNU General Public License, version 2 (GPL-2.0) 7 | # 8 | # For full copyright and license information, please see 9 | # the docs/CREDITS.txt file. 10 | # 11 | set -e 12 | 13 | find . -type f -a -iregex '.*\.\(gif\|jpg\|jpeg\|png\)$' -a -not -wholename '*vendor/*' | \ 14 | parallel --gnu --keep-order 'phpBB/develop/strip_icc_profiles.sh {}' 15 | -------------------------------------------------------------------------------- /phpBB/adm/style/installer_install.html: -------------------------------------------------------------------------------- 1 | 2 |

    {TITLE}

    3 |

    {CONTENT}

    4 | 5 |
    6 |
    7 | {L_SUBMIT} 8 | 9 |
    10 |
    11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /phpBB/phpbb/controller/exception.php: -------------------------------------------------------------------------------- 1 | 7 | * @license GNU General Public License, version 2 (GPL-2.0) 8 | * 9 | * For full copyright and license information, please see 10 | * the docs/CREDITS.txt file. 11 | * 12 | */ 13 | 14 | namespace phpbb\controller; 15 | 16 | /** 17 | * Controller exception class 18 | */ 19 | class exception extends \phpbb\exception\runtime_exception 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /phpBB/phpbb/di/exception/di_exception.php: -------------------------------------------------------------------------------- 1 | 7 | * @license GNU General Public License, version 2 (GPL-2.0) 8 | * 9 | * For full copyright and license information, please see 10 | * the docs/CREDITS.txt file. 11 | * 12 | */ 13 | 14 | namespace phpbb\di\exception; 15 | 16 | use phpbb\exception\runtime_exception; 17 | 18 | class di_exception extends runtime_exception 19 | { 20 | } 21 | -------------------------------------------------------------------------------- /phpBB/phpbb/extension/exception.php: -------------------------------------------------------------------------------- 1 | 7 | * @license GNU General Public License, version 2 (GPL-2.0) 8 | * 9 | * For full copyright and license information, please see 10 | * the docs/CREDITS.txt file. 11 | * 12 | */ 13 | 14 | namespace phpbb\extension; 15 | 16 | /** 17 | * Exception class for metadata 18 | */ 19 | class exception extends \phpbb\exception\runtime_exception 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /phpBB/phpbb/report/exception/already_reported_exception.php: -------------------------------------------------------------------------------- 1 | 7 | * @license GNU General Public License, version 2 (GPL-2.0) 8 | * 9 | * For full copyright and license information, please see 10 | * the docs/CREDITS.txt file. 11 | * 12 | */ 13 | 14 | namespace phpbb\report\exception; 15 | 16 | class already_reported_exception extends invalid_report_exception 17 | { 18 | 19 | } 20 | -------------------------------------------------------------------------------- /phpBB/phpbb/report/exception/entity_not_found_exception.php: -------------------------------------------------------------------------------- 1 | 7 | * @license GNU General Public License, version 2 (GPL-2.0) 8 | * 9 | * For full copyright and license information, please see 10 | * the docs/CREDITS.txt file. 11 | * 12 | */ 13 | 14 | namespace phpbb\report\exception; 15 | 16 | class entity_not_found_exception extends invalid_report_exception 17 | { 18 | 19 | } 20 | -------------------------------------------------------------------------------- /phpBB/phpbb/search/exception/no_search_backend_found_exception.php: -------------------------------------------------------------------------------- 1 | 7 | * @license GNU General Public License, version 2 (GPL-2.0) 8 | * 9 | * For full copyright and license information, please see 10 | * the docs/CREDITS.txt file. 11 | * 12 | */ 13 | 14 | namespace phpbb\search\exception; 15 | 16 | class no_search_backend_found_exception extends search_exception 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /phpBB/phpbb/storage/exception/no_action_in_progress_exception.php: -------------------------------------------------------------------------------- 1 | 7 | * @license GNU General Public License, version 2 (GPL-2.0) 8 | * 9 | * For full copyright and license information, please see 10 | * the docs/CREDITS.txt file. 11 | * 12 | */ 13 | 14 | namespace phpbb\storage\exception; 15 | 16 | class no_action_in_progress_exception extends storage_exception 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /phpBB/phpbb/notification/exception.php: -------------------------------------------------------------------------------- 1 | 7 | * @license GNU General Public License, version 2 (GPL-2.0) 8 | * 9 | * For full copyright and license information, please see 10 | * the docs/CREDITS.txt file. 11 | * 12 | */ 13 | 14 | namespace phpbb\notification; 15 | 16 | /** 17 | * Notifications exception 18 | */ 19 | 20 | class exception extends \phpbb\exception\runtime_exception 21 | { 22 | } 23 | -------------------------------------------------------------------------------- /tests/template/templates/if.html: -------------------------------------------------------------------------------- 1 | 2 | 1 3 | 4 | 2 5 | 6 | |S_OTHER_OTHER_VALUE| 7 | 8 | 03 9 | 10 | 11 | 12 | 04 13 | 14 | 15 | 16 | false 17 | 18 | 19 | 20 | !false 21 | 22 | 23 | 24 | {VALUE_TEST} 25 | 26 | -------------------------------------------------------------------------------- /tests/template/templates/loop_vars.html: -------------------------------------------------------------------------------- 1 | 2 | first 3 | {test_loop.S_ROW_NUM} - a 4 | {test_loop.VARIABLE} - b 5 | set 6 | 7 | last 8 | 9 | 10 | {test_loop.inner.S_ROW_NUM} - c 11 | last inner 12 | 13 | 14 | -------------------------------------------------------------------------------- /phpBB/language/en/email/profile_send_im.txt: -------------------------------------------------------------------------------- 1 | 2 | Hello {TO_USERNAME}, 3 | 4 | The following is a message sent to you by {FROM_USERNAME} via your account on "{SITENAME}". If this message is spam, contains abusive or other comments you find offensive please contact the webmaster of the board at the following address: 5 | 6 | {BOARD_CONTACT} 7 | 8 | Include this full message. Please note that the sender address has been set to the boards IM account. 9 | 10 | Message sent to you follows 11 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~ 12 | 13 | {MESSAGE} 14 | -------------------------------------------------------------------------------- /phpBB/language/en/email/privmsg_notify.txt: -------------------------------------------------------------------------------- 1 | Subject: New private message 2 | 3 | Hello {USERNAME}, 4 | 5 | A new private message from "{AUTHOR_NAME}" to your account on "{SITENAME}" with the following subject has arrived: 6 | {SUBJECT} 7 | 8 | You can view your new message by clicking on the following link: 9 | 10 | {U_VIEW_MESSAGE} 11 | 12 | You have requested that you be notified on this event, remember that you can always choose not to be notified of new messages by changing the appropriate setting in your profile. 13 | 14 | {EMAIL_SIG} 15 | -------------------------------------------------------------------------------- /phpBB/phpbb/report/exception/report_permission_denied_exception.php: -------------------------------------------------------------------------------- 1 | 7 | * @license GNU General Public License, version 2 (GPL-2.0) 8 | * 9 | * For full copyright and license information, please see 10 | * the docs/CREDITS.txt file. 11 | * 12 | */ 13 | 14 | namespace phpbb\report\exception; 15 | 16 | class report_permission_denied_exception extends invalid_report_exception 17 | { 18 | 19 | } 20 | -------------------------------------------------------------------------------- /phpBB/phpbb/search/exception/search_exception.php: -------------------------------------------------------------------------------- 1 | 7 | * @license GNU General Public License, version 2 (GPL-2.0) 8 | * 9 | * For full copyright and license information, please see 10 | * the docs/CREDITS.txt file. 11 | * 12 | */ 13 | 14 | namespace phpbb\search\exception; 15 | 16 | use phpbb\exception\runtime_exception; 17 | 18 | class search_exception extends runtime_exception 19 | { 20 | } 21 | -------------------------------------------------------------------------------- /phpBB/styles/prosilver/imgs/svg/info-variant.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auth/phpbb_not_a_token.php: -------------------------------------------------------------------------------- 1 | 7 | * @license GNU General Public License, version 2 (GPL-2.0) 8 | * 9 | * For full copyright and license information, please see 10 | * the docs/CREDITS.txt file. 11 | * 12 | */ 13 | 14 | class phpbb_not_a_token 15 | { 16 | public function __construct($param1, $param2, $param3, $param4) 17 | { 18 | } 19 | 20 | public function setEndOfLife() 21 | { 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /phpBB/phpbb/auth/provider/oauth/service/exception.php: -------------------------------------------------------------------------------- 1 | 7 | * @license GNU General Public License, version 2 (GPL-2.0) 8 | * 9 | * For full copyright and license information, please see 10 | * the docs/CREDITS.txt file. 11 | * 12 | */ 13 | 14 | namespace phpbb\auth\provider\oauth\service; 15 | 16 | /** 17 | * OAuth service exception class 18 | */ 19 | class exception extends \RuntimeException 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /phpBB/phpbb/ban/exception/no_valid_ips_exception.php: -------------------------------------------------------------------------------- 1 | 7 | * @license GNU General Public License, version 2 (GPL-2.0) 8 | * 9 | * For full copyright and license information, please see 10 | * the docs/CREDITS.txt file. 11 | * 12 | */ 13 | 14 | namespace phpbb\ban\exception; 15 | 16 | use phpbb\exception\runtime_exception; 17 | 18 | class no_valid_ips_exception extends runtime_exception 19 | { 20 | } 21 | -------------------------------------------------------------------------------- /tests/avatar/driver/barfoo.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | group_id 5 | group_legend 6 | group_desc 7 | 8 | 1 9 | 0 10 | 11 | 12 | 13 | 2 14 | 1 15 | 16 | 17 | 18 | 3 19 | 2 20 | 21 | 22 |
    23 |
    24 | -------------------------------------------------------------------------------- /tests/installer/mocks/test_installer_module.php: -------------------------------------------------------------------------------- 1 | 7 | * @license GNU General Public License, version 2 (GPL-2.0) 8 | * 9 | * For full copyright and license information, please see 10 | * the docs/CREDITS.txt file. 11 | * 12 | */ 13 | 14 | class test_installer_module extends \phpbb\install\module_base 15 | { 16 | public function get_navigation_stage_path() 17 | { 18 | return array(); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /tests/text_processing/tickets_data/PHPBB3-7275.after.php: -------------------------------------------------------------------------------- 1 | 7 | * @license GNU General Public License, version 2 (GPL-2.0) 8 | * 9 | * For full copyright and license information, please see 10 | * the docs/CREDITS.txt file. 11 | * 12 | */ 13 | 14 | function after_assert_phpbb3_7275($vars) 15 | { 16 | extract($vars); 17 | decode_message($parsed_text); 18 | $test->assertSame($original, $parsed_text); 19 | } 20 | -------------------------------------------------------------------------------- /phpBB/phpbb/ban/exception/invalid_length_exception.php: -------------------------------------------------------------------------------- 1 | 7 | * @license GNU General Public License, version 2 (GPL-2.0) 8 | * 9 | * For full copyright and license information, please see 10 | * the docs/CREDITS.txt file. 11 | * 12 | */ 13 | 14 | namespace phpbb\ban\exception; 15 | 16 | use phpbb\exception\runtime_exception; 17 | 18 | class invalid_length_exception extends runtime_exception 19 | { 20 | } 21 | -------------------------------------------------------------------------------- /phpBB/phpbb/ban/exception/no_valid_users_exception.php: -------------------------------------------------------------------------------- 1 | 7 | * @license GNU General Public License, version 2 (GPL-2.0) 8 | * 9 | * For full copyright and license information, please see 10 | * the docs/CREDITS.txt file. 11 | * 12 | */ 13 | 14 | namespace phpbb\ban\exception; 15 | 16 | use phpbb\exception\runtime_exception; 17 | 18 | class no_valid_users_exception extends runtime_exception 19 | { 20 | } 21 | -------------------------------------------------------------------------------- /phpBB/phpbb/ban/exception/type_not_found_exception.php: -------------------------------------------------------------------------------- 1 | 7 | * @license GNU General Public License, version 2 (GPL-2.0) 8 | * 9 | * For full copyright and license information, please see 10 | * the docs/CREDITS.txt file. 11 | * 12 | */ 13 | 14 | namespace phpbb\ban\exception; 15 | 16 | use phpbb\exception\runtime_exception; 17 | 18 | class type_not_found_exception extends runtime_exception 19 | { 20 | } 21 | -------------------------------------------------------------------------------- /phpBB/phpbb/feed/exception/feed_exception.php: -------------------------------------------------------------------------------- 1 | 7 | * @license GNU General Public License, version 2 (GPL-2.0) 8 | * 9 | * For full copyright and license information, please see 10 | * the docs/CREDITS.txt file. 11 | * 12 | */ 13 | 14 | namespace phpbb\feed\exception; 15 | 16 | use phpbb\exception\runtime_exception; 17 | 18 | abstract class feed_exception extends runtime_exception 19 | { 20 | 21 | } 22 | -------------------------------------------------------------------------------- /.github/ldap/slapd.conf: -------------------------------------------------------------------------------- 1 | # See slapd.conf(5) for details on configuration options. 2 | include /etc/ldap/schema/core.schema 3 | include /etc/ldap/schema/cosine.schema 4 | include /etc/ldap/schema/inetorgperson.schema 5 | include /etc/ldap/schema/nis.schema 6 | 7 | pidfile /var/tmp/slapd/slapd.pid 8 | argsfile /var/tmp/slapd/slapd.args 9 | 10 | modulepath /usr/lib/openldap 11 | 12 | database ldif 13 | directory /var/tmp/slapd 14 | 15 | suffix "dc=example,dc=com" 16 | rootdn "cn=admin,dc=example,dc=com" 17 | rootpw adminadmin 18 | --------------------------------------------------------------------------------