moodle/report/configlog
Eloy Lafuente (stronk7) 0524a0b9f9 MDL-71583 versions: Add all the missing full-stops to version/requires
It seems that the new phpcs3 checker is now controlling those
line comments that previously were ignored.

This commit just looks for all the cases and bulk-add
them when needed. The bash script (mac) used to add all them is:

while read -r line; do
    arr=(${line//:/ })
    if [[ -n ${arr[0]} ]] && [[ -n ${arr[1]} ]]; then
        echo "  file ${arr[0]}, line ${arr[1]}"
        sed -i "${arr[1]}s/\$/\./" ${arr[0]}
    fi
done < <(find . -name version.php | xargs ag --nomultiline '>(version|requires) *=.*//.*[^;\.]$')
2021-05-11 20:00:11 +02:00
..
classes MDL-71099 Lib: Move new user_fields class from core to core_user 2021-03-25 13:48:04 +00:00
lang/en MDL-68261 report_configlog: Log changes from admin/cli/cfg.php 2020-05-05 17:52:27 +10:00
tests/behat MDL-66109 behat: Require newline at EOF 2020-05-11 11:07:49 +08:00
index.php MDL-69898 report_configlog: allow searching settings by page parameter. 2021-02-01 09:14:02 +00:00
settings.php
version.php MDL-71583 versions: Add all the missing full-stops to version/requires 2021-05-11 20:00:11 +02:00