Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WPCS fixes #39

Merged
merged 3 commits into from
Mar 10, 2024
Merged

WPCS fixes #39

merged 3 commits into from
Mar 10, 2024

Commits on Feb 4, 2021

  1. Fixes by WPCS

    - 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. (WordPress.WP.EnqueuedResourceParameters.NoExplicitVersion)
    - Detected usage of a possibly undefined superglobal array index: $_POST['option_name']. Use isset() or empty() to check the index exists before using it (WordPress.Security.ValidatedSanitizedInput.InputNotValidated)
    - Detected usage of a possibly undefined superglobal array index: $_POST['dismissible_length']. Use isset() or empty() to check the index exists before using it (WordPress.Security.ValidatedSanitizedInput.InputNotValidated)
    Surbma committed Feb 4, 2021
    Configuration menu
    Copy the full SHA
    6c8fd73 View commit details
    Browse the repository at this point in the history

Commits on May 9, 2021

  1. 1.4.5

    - WPCS fixes.
    Surbma committed May 9, 2021
    Configuration menu
    Copy the full SHA
    17469a6 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'upstream-master'

    # Conflicts:
    #	persist-admin-notices-dismissal.php
    Surbma committed May 9, 2021
    Configuration menu
    Copy the full SHA
    7eca340 View commit details
    Browse the repository at this point in the history