Restaurant reservations made easy. Accept bookings online. Quickly confirm or reject reservations, send email notifications, set booking times and mor …
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Security
1,047
8 issue groups
Maintainability
720
12 issue groups
I18n
326
5 issue groups
ERRORSecurityOutput is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '" $key: "'.275
- Category
- Security
- Occurrences
- 275
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '" $key: "'.
ERRORSecurityUnsafe printing functionAll output should be run through an escaping function (like echo esc_html_x() or echo esc_attr_x()), found '_ex'.186
- Category
- Security
- Occurrences
- 186
- 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'.
WARNINGSecurityNonce verification recommendedProcessing form data without nonce verification.174
- Category
- Security
- Occurrences
- 174
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGSecurityRequest data is not unslashed$_COOKIE['rtb-mc-sbscrb'] not unslashed before sanitization. Use wp_unslash() or similar153
- Category
- Security
- Occurrences
- 153
- Severity
- warning
Sample message
$_COOKIE['rtb-mc-sbscrb'] not unslashed before sanitization. Use wp_unslash() or similar
WARNINGMaintainabilityNon-prefixed hook nameHook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'ebcfrtb_pdf_deliver_' . $this->lib".150
- Category
- Maintainability
- Occurrences
- 150
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'ebcfrtb_pdf_deliver_' . $this->lib".
WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$K_PATH_CACHE".135
- Category
- Maintainability
- Occurrences
- 135
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$K_PATH_CACHE".
WARNINGMaintainabilityNon-prefixed constantGlobal constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "DATAMATRIXDEFS".119
- Category
- Maintainability
- Occurrences
- 119
- Severity
- warning
Sample message
Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "DATAMATRIXDEFS".
ERRORI18nText Domain MismatchMismatched text domain. Expected 'restaurant-reservations' but got 'Default interval in minutes when selecting a time.'.115
- Category
- I18n
- Occurrences
- 115
- Severity
- error
Sample message
Mismatched text domain. Expected 'restaurant-reservations' but got 'Default interval in minutes when selecting a time.'.
WARNINGMaintainabilityNon-prefixed classClasses declared by a theme/plugin should start with the theme/plugin prefix. Found: "Datamatrix".95
- Category
- Maintainability
- Occurrences
- 95
- Severity
- warning
Sample message
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "Datamatrix".
WARNINGSecurityMissing nonce verificationProcessing form data without nonce verification.86
- Category
- Security
- Occurrences
- 86
- Severity
- warning
Sample message
Processing form data without nonce verification.
Show 15 moreShow less
ERRORI18nMissing Translators Comment80
- Category
- I18n
- Occurrences
- 80
- 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.
ERRORSecurityException output is not escaped70
- Category
- Security
- Occurrences
- 70
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '" but reading $name instead"'.
WARNINGSecurityInput is not sanitized68
- Category
- Security
- Occurrences
- 68
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_COOKIE['rtb-mc-sbscrb']
ERRORI18nMissing Arg Domain57
- Category
- I18n
- Occurrences
- 57
- Severity
- error
Sample message
Missing $domain parameter in function call to __().
ERRORMaintainabilitydate date54
- Category
- Maintainability
- Occurrences
- 54
- Severity
- error
Sample message
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
ERRORI18nNon Singular String Literal Text46
- Category
- I18n
- Occurrences
- 46
- Severity
- error
Sample message
The $text parameter must be a single text string literal. Found: $column
ERRORMaintainabilityMissing direct file access protection42
- Category
- Maintainability
- Occurrences
- 42
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
WARNINGMaintainabilityNon-prefixed function39
- Category
- Maintainability
- Occurrences
- 39
- Severity
- warning
Sample message
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "rtb_add_custom_styling".
WARNINGSecurityInput is not validated35
- Category
- Security
- Occurrences
- 35
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_POST['action']. Check that the array index exists before using it.
ERRORI18nUnordered Placeholders Text28
- Category
- I18n
- Occurrences
- 28
- Severity
- error
Sample message
Multiple placeholders in translatable strings should be ordered. Expected "%1$d, %2$d", but got "%d, %d" in ' %d reservation(s), %d guest(s)'.
ERRORMaintainabilitycurl curl setopt19
- Category
- Maintainability
- Occurrences
- 19
- Severity
- error
Sample message
Using cURL functions is highly discouraged. Use wp_remote_get() instead.
ERRORMaintainabilityfile system operations fread18
- Category
- Maintainability
- Occurrences
- 18
- Severity
- error
Sample message
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fread().
WARNINGMaintainabilityMissing Version18
- Category
- Maintainability
- Occurrences
- 18
- Severity
- warning
Sample message
Resource version not set in call to wp_enqueue_script(). This means new versions of the script may not always be loaded due to browser caching.
ERRORMaintainabilityfile system operations fclose17
- Category
- Maintainability
- Occurrences
- 17
- Severity
- error
Sample message
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fclose().
ERRORMaintainabilityNo Explicit Version14
- Category
- Maintainability
- Occurrences
- 14
- Severity
- error
Sample message
Version parameter is not explicitly set or has been set to an equivalent of "false" for wp_enqueue_script; This means that the WordPress core version will be used which is not recommended for plugin or theme development.
External Connections
Not analyzed yet.
Score History
First score snapshot
v2.7.21
21
Latest
- Findings
- 2,246
- Errors
- 1,099
- Warnings
- 1,147
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 21 | 2,246 | 1,099 | 1,147 | v2.7.21 | 2.0.0 |
Relationship Map
Author, categories, issues, domains, and nearby plugins.