moodle/report/outline
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-61881 report_outline: Implement null privacy provider 2018-04-09 09:55:07 +08:00
db MDL-19667 report_outline: Clone permissions from view capability 2017-12-19 11:51:36 +08:00
lang/en MDL-61881 report: fix privacy lang strings 2018-04-11 10:06:51 +08:00
tests Merge branch 'MDL-66431-311' of git://github.com/ilyatregubov/moodle into MOODLE_311_STABLE 2021-05-02 19:13:56 +02:00
index.php MDL-70753 report: Provide a separate page for course report 2021-04-30 08:37:13 +05:30
lib.php MDL-19667 report: Add a new capability to view user outline report 2017-12-14 16:16:04 +11:00
locallib.php MDL-40759 icons: Rename activity_icon 2017-03-17 15:52:18 +08:00
styles.css
user.php MDL-58762 report: Check group permissions in course user reports 2017-09-07 10:53:32 +02:00
version.php MDL-71583 versions: Add all the missing full-stops to version/requires 2021-05-11 20:00:11 +02:00