{MESSAGE_TITLE}
5 |{MESSAGE_TEXT}
6 |├── 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 │ │ │ ├── date.html │ │ │ └── bool.html │ │ ├── ucp_footer.html │ │ ├── captcha_incomplete.html │ │ ├── ucp_profile_avatar.html │ │ ├── viewonline_whois.html │ │ ├── ucp_auth_link.html │ │ ├── timezone.js │ │ ├── captcha_recaptcha_v3.html │ │ ├── captcha_recaptcha.html │ │ ├── captcha_qa.html │ │ ├── ucp_notifications_webpush.html │ │ ├── mcp_whois.html │ │ └── mcp_notes_front.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 │ │ ├── thumbtack.svg │ │ ├── toggle-off.svg │ │ ├── bullhorn.svg │ │ ├── link-variant.svg │ │ └── fire.svg └── all │ ├── template │ ├── macros │ │ ├── forms │ │ │ ├── dimension.twig │ │ │ ├── radio_buttons.twig │ │ │ ├── textarea.twig │ │ │ ├── build_template.twig │ │ │ └── input.twig │ │ ├── icons │ │ │ ├── png.twig │ │ │ ├── font.twig │ │ │ └── svg.twig │ │ └── avatar.twig │ └── cron.html │ └── imgs │ └── svg │ └── 404.svg ├── 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 │ │ └── search_indexer_21.php ├── index.htm ├── acp │ └── info │ │ ├── acp_main.php │ │ ├── acp_bots.php │ │ ├── acp_words.php │ │ ├── acp_ranks.php │ │ ├── acp_bbcodes.php │ │ ├── acp_contact.php │ │ ├── acp_php_info.php │ │ ├── acp_reasons.php │ │ ├── acp_update.php │ │ ├── acp_forums.php │ │ ├── acp_inactive.php │ │ ├── acp_language.php │ │ ├── acp_disallow.php │ │ ├── acp_email.php │ │ ├── acp_help_phpbb.php │ │ ├── acp_profile.php │ │ └── acp_storage.php ├── ucp │ └── info │ │ ├── ucp_auth_link.php │ │ ├── ucp_attachments.php │ │ └── ucp_zebra.php └── mcp │ └── info │ └── mcp_notes.php ├── config ├── installer │ ├── config.yml │ ├── routing │ │ └── environment.yml │ └── container │ │ ├── environment.yml │ │ ├── parameters.yml │ │ └── services_avatar.yml ├── production │ ├── config.yml │ ├── routing │ │ └── environment.yml │ └── container │ │ ├── parameters.yml │ │ ├── services.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 │ │ ├── services_user.yml │ │ ├── services_language.yml │ │ ├── services_members.yml │ │ └── services_http.yml │ └── routing │ │ ├── cron.yml │ │ ├── members.yml │ │ ├── help.yml │ │ ├── storage.yml │ │ └── report.yml ├── test │ ├── container │ │ ├── services.yml │ │ ├── parameters.yml │ │ └── environment.yml │ ├── routing │ │ └── environment.yml │ └── config.yml └── development │ ├── routing │ └── environment.yml │ ├── container │ ├── services.yml │ ├── parameters.yml │ └── environment.yml │ └── config.yml ├── images ├── spacer.gif ├── icons │ ├── misc │ │ ├── fire.gif │ │ ├── heart.gif │ │ ├── star.gif │ │ ├── thinking.gif │ │ ├── radioactive.gif │ │ ├── index.htm │ │ └── star.svg │ ├── smile │ │ ├── info.gif │ │ ├── alert.gif │ │ ├── mrgreen.gif │ │ ├── redface.gif │ │ ├── question.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_geek.gif │ ├── icon_e_sad.gif │ ├── icon_e_wink.gif │ ├── icon_evil.gif │ ├── icon_idea.gif │ ├── icon_razz.gif │ ├── icon_e_smile.gif │ ├── icon_e_ugeek.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 ├── index.htm ├── ranks │ └── index.htm └── avatars │ ├── index.htm │ ├── gallery │ └── index.htm │ └── upload │ └── index.htm ├── 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 │ ├── date.html │ └── bool.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 │ ├── confirm_bbcode.html │ ├── acp_storage_update_progress.html │ ├── pagination.html │ ├── captcha_turnstile_acp_demo.html │ ├── timezone_option.html │ ├── progress_bar.html │ ├── acp_search_index_progress.html │ └── installer_footer.html ├── docs ├── update-config.sample.yml └── assets │ └── images │ ├── bg_header.gif │ └── icon_back_top.gif ├── assets └── webfonts │ ├── fa-solid-900.ttf │ ├── fa-brands-400.ttf │ ├── fa-brands-400.woff2 │ ├── fa-regular-400.ttf │ ├── fa-solid-900.woff2 │ ├── fa-regular-400.woff2 │ ├── fa-v4compatibility.ttf │ └── fa-v4compatibility.woff2 ├── ext └── index.htm ├── cache └── index.htm ├── download └── index.htm ├── files └── index.htm ├── language ├── index.htm └── en │ ├── index.htm │ ├── acp │ └── index.htm │ └── email │ ├── index.htm │ ├── pm_report_deleted.txt │ ├── report_deleted.txt │ ├── report_pm.txt │ ├── post_disapproved.txt │ ├── topic_approved.txt │ ├── topic_disapproved.txt │ ├── user_activate.txt │ ├── report_post.txt │ ├── group_request.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 │ ├── user_remind_inactive.txt │ ├── admin_activate.txt │ ├── admin_send_email.txt │ ├── user_forgot_password.txt │ ├── profile_send_im.txt │ ├── privmsg_notify.txt │ ├── user_welcome.txt │ ├── profile_send_email.txt │ ├── quote.txt │ ├── newtopic_notify.txt │ ├── user_resend_inactive.txt │ ├── email_notify.txt │ ├── user_welcome_inactive.txt │ ├── bookmark.txt │ ├── forum_notify.txt │ ├── report_closed.txt │ ├── report_pm_closed.txt │ ├── contact_admin.txt │ ├── topic_notify.txt │ ├── admin_welcome_inactive.txt │ ├── user_reactivate_account.txt │ └── mention.txt ├── store └── 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 │ │ ├── no_feed_exception.php │ │ ├── no_forum_exception.php │ │ ├── no_topic_exception.php │ │ ├── unauthorized_forum_exception.php │ │ └── unauthorized_topic_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 │ │ ├── invalid_report_exception.php │ │ ├── factory_invalid_argument_exception.php │ │ ├── pm_reporting_disabled_exception.php │ │ └── empty_report_exception.php ├── notification │ └── exception.php ├── ban │ └── exception │ │ ├── no_valid_ips_exception.php │ │ ├── invalid_length_exception.php │ │ ├── no_valid_emails_exception.php │ │ ├── no_valid_users_exception.php │ │ └── type_not_found_exception.php ├── exception │ ├── version_check_exception.php │ └── exception_interface.php ├── install │ ├── helper │ │ └── iohandler │ │ │ └── exception │ │ │ └── iohandler_not_implemented_exception.php │ ├── exception │ │ ├── file_updater_failure_exception.php │ │ ├── invalid_dbms_exception.php │ │ ├── cannot_build_container_exception.php │ │ ├── installer_exception.php │ │ ├── resource_limit_reached_exception.php │ │ ├── installer_config_not_writable_exception.php │ │ └── user_interaction_required_exception.php │ └── module │ │ ├── requirements │ │ ├── update_module.php │ │ └── install_module.php │ │ ├── install_finish │ │ └── module.php │ │ ├── install_database │ │ └── module.php │ │ ├── install_filesystem │ │ └── module.php │ │ ├── install_data │ │ └── module.php │ │ ├── obtain_data │ │ ├── update_module.php │ │ └── install_module.php │ │ ├── update_database │ │ └── module.php │ │ └── update_filesystem │ │ └── module.php ├── language │ └── exception │ │ ├── language_exception.php │ │ ├── invalid_plural_rule_exception.php │ │ └── language_file_not_found.php ├── composer │ ├── exception │ │ ├── managed_with_error_exception.php │ │ ├── managed_with_clean_error_exception.php │ │ └── managed_with_enable_error_exception.php │ └── io │ │ ├── null_io.php │ │ └── io_interface.php ├── passwords │ └── driver │ │ ├── phpass.php │ │ ├── argon2id.php │ │ ├── rehashable_driver_interface.php │ │ └── bcrypt_2y.php ├── db │ ├── extractor │ │ └── exception │ │ │ ├── invalid_format_exception.php │ │ │ └── extractor_not_initialized_exception.php │ ├── output_handler │ │ └── null_migrator_output_handler.php │ ├── tools │ │ ├── tools.php │ │ ├── mssql.php │ │ ├── postgres.php │ │ └── factory.php │ ├── migration │ │ └── data │ │ │ ├── v32x │ │ │ ├── timezone_p3.php │ │ │ ├── remove_imagick.php │ │ │ ├── add_plupload_config.php │ │ │ └── f_list_topics_permission_add.php │ │ │ ├── v310 │ │ │ ├── boardindex.php │ │ │ ├── mod_rewrite.php │ │ │ ├── live_searches_config.php │ │ │ └── extensions_version_check_force_unstable.php │ │ │ ├── v320 │ │ │ ├── cookie_notice.php │ │ │ ├── remote_upload_validation.php │ │ │ └── allowed_schemes_links.php │ │ │ ├── v400 │ │ │ ├── add_disable_board_access_config.php │ │ │ ├── remove_remote_upload.php │ │ │ └── remove_max_img_size.php │ │ │ └── v33x │ │ │ ├── fix_display_unapproved_posts_config.php │ │ │ └── font_awesome_5_rollback.php │ └── middleware │ │ ├── mysql │ │ ├── middleware.php │ │ └── driver.php │ │ ├── oracle │ │ └── middleware.php │ │ ├── sqlsrv │ │ ├── middleware.php │ │ └── driver.php │ │ └── postgresql │ │ ├── middleware.php │ │ └── driver.php ├── template │ ├── twig │ │ └── node │ │ │ ├── includejs.php │ │ │ ├── includecss.php │ │ │ └── expression │ │ │ └── binary │ │ │ ├── equalequal.php │ │ │ └── notequalequal.php │ └── exception │ │ └── user_object_not_available.php ├── captcha │ └── plugins │ │ └── confirm_type.php ├── console │ └── command │ │ └── config │ │ └── command.php ├── textreparser │ └── plugins │ │ ├── forum_rules.php │ │ ├── forum_description.php │ │ └── group_description.php ├── mimetype │ ├── content_guesser.php │ └── guesser_base.php ├── routing │ └── resources_locator │ │ └── resources_locator_interface.php └── textformatter │ └── cache_interface.php └── install ├── convertors └── index.htm ├── schemas └── index.htm ├── index.html └── phpinfo.php /develop/blank.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /develop/blank.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor-ext/.git-keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /composer-ext.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /composer-ext.lock: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /styles/prosilver/theme/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /styles/prosilver/template/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /styles/prosilver/theme/images/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /includes/utf/data/search_indexer_19.php: -------------------------------------------------------------------------------- 1 | '龻'); 2 | -------------------------------------------------------------------------------- /includes/utf/data/search_indexer_26.php: -------------------------------------------------------------------------------- 1 | '힣'); 2 | -------------------------------------------------------------------------------- /includes/utf/data/search_indexer_64.php: -------------------------------------------------------------------------------- 1 | '𠀀'); 2 | -------------------------------------------------------------------------------- /includes/utf/data/search_indexer_84.php: -------------------------------------------------------------------------------- 1 | '𪛖'); 2 | -------------------------------------------------------------------------------- /includes/utf/data/search_indexer_9.php: -------------------------------------------------------------------------------- 1 | '䶵','一'=>'一'); 2 | -------------------------------------------------------------------------------- /styles/prosilver/theme/en/stylesheet.css: -------------------------------------------------------------------------------- 1 | /* language specific styles go here */ 2 | -------------------------------------------------------------------------------- /config/installer/config.yml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: ../default/config.yml } 3 | -------------------------------------------------------------------------------- /config/production/config.yml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: ../default/config.yml } 3 | -------------------------------------------------------------------------------- /develop/test.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/phpbb-app/master/develop/test.gif -------------------------------------------------------------------------------- /images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/phpbb-app/master/images/spacer.gif -------------------------------------------------------------------------------- /config/installer/routing/environment.yml: -------------------------------------------------------------------------------- 1 | core.default: 2 | resource: installer.yml 3 | -------------------------------------------------------------------------------- /adm/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpbb/phpbb-app/master/adm/images/spacer.gif -------------------------------------------------------------------------------- /config/default/config.yml: -------------------------------------------------------------------------------- 1 | # phpBB's config file (This line is needed because of the packager) 2 | -------------------------------------------------------------------------------- /docs/update-config.sample.yml: -------------------------------------------------------------------------------- 1 | updater: 2 | type: all 3 | extensions: ['phpbb/viglink'] 4 | -------------------------------------------------------------------------------- /styles/prosilver/template/ucp_pm_message_footer.html: -------------------------------------------------------------------------------- 1 |
{BODY}
5 | 6 | 7 | -------------------------------------------------------------------------------- /config/default/routing/members.yml: -------------------------------------------------------------------------------- 1 | phpbb_members_team: 2 | path: /team 3 | defaults: 4 | _controller: members.controller.team:handle 5 | -------------------------------------------------------------------------------- /styles/all/template/macros/forms/radio_buttons.twig: -------------------------------------------------------------------------------- 1 | {% for button in BUTTONS %} 2 | 3 | {% endfor %} 4 | -------------------------------------------------------------------------------- /config/installer/container/parameters.yml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: ../../default/container/parameters.yml } 3 | 4 | parameters: 5 | installer.create_config_file.options: [] 6 | -------------------------------------------------------------------------------- /styles/prosilver/template/posting_body.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /styles/prosilver/imgs/svg/arrow-right-bold.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /adm/style/simple_body.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |{MESSAGE_TEXT}
6 |{MESSAGE_TEXT}
6 |{MESSAGE_TEXT}
6 |{L_ACP_PHP_INFO_EXPLAIN}
8 | 9 |{{ lang(CONFIRM_LANG, '', '') }}
6 |{WHOIS}
8 | {{ MESSAGE_TEXT }}
6 |{CONTENT}
4 | 5 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /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/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/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/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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /adm/style/installer_install.html: -------------------------------------------------------------------------------- 1 | 2 |{CONTENT}
4 | 5 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /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/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/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/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/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 | -------------------------------------------------------------------------------- /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/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 | -------------------------------------------------------------------------------- /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/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/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/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 | -------------------------------------------------------------------------------- /styles/prosilver/imgs/svg/info-variant.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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/ban/exception/no_valid_emails_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_emails_exception extends runtime_exception 19 | { 20 | } 21 | -------------------------------------------------------------------------------- /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/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 | -------------------------------------------------------------------------------- /adm/style/profilefields/date.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /phpbb/exception/version_check_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\exception; 15 | 16 | /** 17 | * Define an exception related to the version checker. 18 | */ 19 | class version_check_exception extends runtime_exception 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /phpbb/report/exception/invalid_report_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 | use phpbb\exception\runtime_exception; 17 | 18 | class invalid_report_exception extends runtime_exception 19 | { 20 | 21 | } 22 | -------------------------------------------------------------------------------- /phpbb/install/helper/iohandler/exception/iohandler_not_implemented_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\install\helper\iohandler\exception; 15 | 16 | class iohandler_not_implemented_exception extends \Exception 17 | { 18 | 19 | } 20 | -------------------------------------------------------------------------------- /styles/prosilver/template/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 | $('#tz_select_date_suggest').click(() => { 11 | phpbb.timezonePreselectSelect(true); 12 | }); 13 | 14 | $(() => { 15 | phpbb.timezoneEnableDateSelection(); 16 | phpbb.timezonePreselectSelect($('#tz_select_date_suggest').attr('timezone-preselect') === 'true'); 17 | }); 18 | })(jQuery); // Avoid conflicts with other libraries 19 | -------------------------------------------------------------------------------- /language/en/email/user_welcome.txt: -------------------------------------------------------------------------------- 1 | Subject: Welcome to "{SITENAME}" 2 | 3 | {WELCOME_MSG} 4 | 5 | Please keep this email for your records. Your account information is as follows: 6 | 7 | ---------------------------- 8 | Username: {USERNAME} 9 | 10 | Board URL: {U_BOARD} 11 | ---------------------------- 12 | 13 | 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. 14 | 15 | Thank you for registering. 16 | 17 | {EMAIL_SIG} 18 | -------------------------------------------------------------------------------- /styles/prosilver/template/captcha_recaptcha_v3.html: -------------------------------------------------------------------------------- 1 | {% if S_RECAPTCHA_AVAILABLE %} 2 | 5 | 6 | 7 | 8 | {# The g-recaptcha class is used in JavaScript #} 9 | 10 | 11 | {% else %} 12 | {{ lang('RECAPTCHA_NOT_AVAILABLE') }} 13 | {% endif %} 14 | -------------------------------------------------------------------------------- /styles/prosilver/template/profilefields/date.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /language/en/email/profile_send_email.txt: -------------------------------------------------------------------------------- 1 | 2 | Hello {TO_USERNAME}, 3 | 4 | The following is an email 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 email (particularly the headers). Please note that the reply address to this email has been set to that of {FROM_USERNAME}. 9 | 10 | Message sent to you follows 11 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~ 12 | 13 | {MESSAGE} 14 | -------------------------------------------------------------------------------- /config/default/routing/report.yml: -------------------------------------------------------------------------------- 1 | phpbb_report_pm_controller: 2 | path: /pm/{id}/report 3 | methods: [GET, POST] 4 | defaults: 5 | _controller: phpbb.report.controller:handle 6 | mode: 'pm' 7 | requirements: 8 | id: \d+ 9 | 10 | phpbb_report_post_controller: 11 | path: /post/{id}/report 12 | methods: [GET, POST] 13 | defaults: 14 | _controller: phpbb.report.controller:handle 15 | mode: 'post' 16 | requirements: 17 | id: \d+ 18 | -------------------------------------------------------------------------------- /phpbb/report/exception/factory_invalid_argument_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 | use phpbb\exception\runtime_exception; 17 | 18 | class factory_invalid_argument_exception extends runtime_exception 19 | { 20 | 21 | } 22 | -------------------------------------------------------------------------------- /phpbb/report/exception/pm_reporting_disabled_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 pm_reporting_disabled_exception extends invalid_report_exception 17 | { 18 | public function __construct() 19 | { 20 | 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /styles/prosilver/imgs/svg/thumbtack.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /adm/style/confirm_bbcode.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /adm/style/profilefields/bool.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | checked="checked" /> 6 | 7 | 8 | -------------------------------------------------------------------------------- /phpbb/install/exception/file_updater_failure_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\install\exception; 15 | 16 | /** 17 | * Thrown when the file updater fails 18 | */ 19 | class file_updater_failure_exception extends installer_exception 20 | { 21 | 22 | } 23 | -------------------------------------------------------------------------------- /phpbb/install/exception/invalid_dbms_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\install\exception; 15 | 16 | /** 17 | * Thrown when an unavailable DBMS has been selected 18 | */ 19 | class invalid_dbms_exception extends installer_exception 20 | { 21 | 22 | } 23 | -------------------------------------------------------------------------------- /phpbb/language/exception/language_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\language\exception; 15 | 16 | /** 17 | * Base exception class for language exceptions 18 | */ 19 | class language_exception extends \phpbb\exception\runtime_exception 20 | { 21 | 22 | } 23 | -------------------------------------------------------------------------------- /adm/style/acp_storage_update_progress.html: -------------------------------------------------------------------------------- 1 | {% include 'overall_header.html' %} 2 | 3 | 4 | 5 |
8 | {{ INDEXING_EXPLAIN }}
9 | {% if INDEXING_PROGRESS_BAR %}
10 |
11 |
15 | {{ INDEXING_PROGRESS_BAR.PERCENTAGE|number_format(2) ~ ' %' }}
16 | {% endif %}
17 |
31 | {L_PROGRESS_EXPLAIN}
32 |
8 | {{ INDEXING_EXPLAIN }}
9 | {% if INDEXING_PROGRESS %}
{{ INDEXING_PROGRESS }}{% endif %}
10 | {% if INDEXING_RATE %}
{{ INDEXING_RATE }}{% endif %}
11 | {% if INDEXING_PROGRESS_BAR %}
12 |
13 |
17 | {{ INDEXING_PROGRESS_BAR.PERCENTAGE|number_format(2) ~ ' %' }}
18 | {{ lang('SEARCH_INDEX_PROGRESS', INDEXING_PROGRESS_BAR.VALUE, INDEXING_PROGRESS_BAR.REMAINING, INDEXING_PROGRESS_BAR.TOTAL) }}
19 | {% endif %}
20 |