BP Classic, a BuddyPress (12.0.0 & up) backwards compatibility add-on
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Security
735
7 issue groups
Maintainability
70
2 issue groups
I18n
64
5 issue groups
Repo Compliance
8
7 issue groups
ERRORSecurityUnsafe printing functionAll output should be run through an escaping function (like echo esc_html_x() or echo esc_attr_x()), found '_ex'.299
- Category
- Security
- Occurrences
- 299
- Severity
- error
Sample message
All output should be run through an escaping function (like echo esc_html_x() or echo esc_attr_x()), found '_ex'.
ERRORSecurityOutput is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$activity_id'.224
- Category
- Security
- Occurrences
- 224
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$activity_id'.
ERRORMaintainabilityMissing direct file access protectionPHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;69
- Category
- Maintainability
- Occurrences
- 69
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
WARNINGSecurityInput is not sanitizedDetected usage of a non-sanitized input variable: $_GET['limit']66
- Category
- Security
- Occurrences
- 66
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_GET['limit']
WARNINGSecurityRequest data is not unslashed$_GET['limit'] not unslashed before sanitization. Use wp_unslash() or similar61
- Category
- Security
- Occurrences
- 61
- Severity
- warning
Sample message
$_GET['limit'] not unslashed before sanitization. Use wp_unslash() or similar
ERRORI18nMissing Translators CommentA function call to __() with texts containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.50
- Category
- I18n
- Occurrences
- 50
- Severity
- error
Sample message
A function call to __() with texts containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
WARNINGSecurityInput is not validatedDetected usage of a possibly undefined superglobal array index: $_GET['limit']. Check that the array index exists before using it.49
- Category
- Security
- Occurrences
- 49
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_GET['limit']. Check that the array index exists before using it.
WARNINGSecurityMissing nonce verificationProcessing form data without nonce verification.21
- Category
- Security
- Occurrences
- 21
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGSecurityNonce verification recommendedProcessing form data without nonce verification.15
- Category
- Security
- Occurrences
- 15
- Severity
- warning
Sample message
Processing form data without nonce verification.
ERRORI18nText Domain MismatchMismatched text domain. Expected 'bp-classic' but got "buddypress".8
- Category
- I18n
- Occurrences
- 8
- Severity
- error
Sample message
Mismatched text domain. Expected 'bp-classic' but got "buddypress".
Show 13 moreShow less
ERRORI18nMissing Singular Placeholder3
- Category
- I18n
- Occurrences
- 3
- Severity
- error
Sample message
Missing singular placeholder, needed for some languages. See https://codex.wordpress.org/I18n_for_WordPress_Developers#Plurals
ERRORRepo ComplianceDiscouraged WordPress constant usage: HEADER_IMAGE_WIDTH2
- Category
- Repo Compliance
- Occurrences
- 2
- Severity
- error
Sample message
Found usage of constant "HEADER_IMAGE_WIDTH". Use add_theme_support( 'custom-header' ) instead.
ERRORI18nUnordered Placeholders Text2
- Category
- I18n
- Occurrences
- 2
- Severity
- error
Sample message
Multiple placeholders in translatable strings should be ordered. Expected "%1$s, %2$s", but got "%s, %s" in 'Theme activated! This theme contains <a href="%s">custom header image</a> support and <a href="%s">sidebar widgets</a>.'.
WARNINGPerformancePost Not In exclude2
- Category
- Performance
- Occurrences
- 2
- Severity
- warning
Sample message
Using exclusionary parameters, like exclude, in calls to get_posts() should be done with caution, see https://wpvip.com/documentation/performance-improvements-by-removing-usage-of-post__not_in/ for more information.
WARNINGI18nDiscouraged text-domain loading1
- Category
- I18n
- Occurrences
- 1
- Severity
- warning
Sample message
load_plugin_textdomain() has been discouraged since WordPress version 4.6. When your plugin is hosted on WordPress.org, you no longer need to manually include this function call for translations under your plugin slug. WordPress will automatically load the translations for you as needed.
ERRORRepo ComplianceDiscouraged WordPress constant declaration: HEADER_IMAGE_HEIGHT1
- Category
- Repo Compliance
- Occurrences
- 1
- Severity
- error
Sample message
Found declaration of constant "HEADER_IMAGE_HEIGHT". Use add_theme_support( 'custom-header' ) instead.
ERRORRepo ComplianceDiscouraged WordPress constant usage: HEADER_IMAGE_HEIGHT1
- Category
- Repo Compliance
- Occurrences
- 1
- Severity
- error
Sample message
Found usage of constant "HEADER_IMAGE_HEIGHT". Use add_theme_support( 'custom-header' ) instead.
ERRORRepo ComplianceDiscouraged WordPress constant declaration: HEADER_IMAGE_WIDTH1
- Category
- Repo Compliance
- Occurrences
- 1
- Severity
- error
Sample message
Found declaration of constant "HEADER_IMAGE_WIDTH". Use add_theme_support( 'custom-header' ) instead.
ERRORRepo ComplianceDiscouraged WordPress constant declaration: HEADER_TEXTCOLOR1
- Category
- Repo Compliance
- Occurrences
- 1
- Severity
- error
Sample message
Found declaration of constant "HEADER_TEXTCOLOR". Use add_theme_support( 'custom-header' ) instead.
ERRORRepo ComplianceDiscouraged WordPress constant usage: HEADER_TEXTCOLOR1
- Category
- Repo Compliance
- Occurrences
- 1
- Severity
- error
Sample message
Found usage of constant "HEADER_TEXTCOLOR". Use add_theme_support( 'custom-header' ) instead.
WARNINGMaintainabilityNot In Footer1
- Category
- Maintainability
- Occurrences
- 1
- Severity
- warning
Sample message
In footer ($in_footer) is not set explicitly wp_enqueue_script; It is recommended to load scripts in the footer. Please set this value to `true` to load it in the footer, or explicitly `false` if it should be loaded in the header.
ERRORSupply ChainHidden files included1
- Category
- Supply Chain
- Occurrences
- 1
- Severity
- error
Sample message
Hidden files are not permitted.
ERRORRepo Complianceoutdated tested upto header1
- Category
- Repo Compliance
- Occurrences
- 1
- Severity
- error
Sample message
Tested up to: 6.6 < 7.0. The "Tested up to" value in your plugin is not set to the current version of WordPress. This means your plugin will not show up in searches, as we require plugins to be compatible and documented as tested up to the most recent version of WordPress.
External Connections
Not analyzed yet.
Score History
First score snapshot
v1.4.0
32
Latest
- Findings
- 880
- Errors
- 664
- Warnings
- 216
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 32 | 880 | 664 | 216 | v1.4.0 | 2.0.0 |
Relationship Map
Author, categories, issues, domains, and nearby plugins.