moodle/admin/tool/uploaduser
Eloy Lafuente (stronk7) 9d6aa39985 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:11:07 +02:00
..
classes MDL-71051 core_user: always use API when working with profile fields 2021-04-28 11:39:04 +02:00
cli MDL-65451 tool_uploaduser: move code away from index.php, add CLI script 2020-10-06 15:54:09 +02:00
db MDL-17468 tool_uploaduser: seperate capability for user pictures 2013-06-14 14:04:25 +08:00
lang/en MDL-65451 tool_uploaduser: move code away from index.php, add CLI script 2020-10-06 15:54:09 +02:00
tests MDL-71051 core_user: create user profile field form is now modal form 2021-04-28 11:47:22 +02:00
example.csv MDL-66705 tool_uploaduser: Add an example csv file. 2019-10-15 10:56:29 +08:00
index.php MDL-65451 tool_uploaduser: move code away from index.php, add CLI script 2020-10-06 15:54:09 +02:00
locallib.php MDL-71051 core_user: always use API when working with profile fields 2021-04-28 11:39:04 +02:00
picture.php MDL-29895 core: removed require_login() when not needed 2018-09-10 11:22:50 +02:00
picture_form.php MDL-61453 user: Fix accepted file type when uploading user pictures 2018-02-14 18:06:45 +01:00
settings.php MDL-17468 tool_uploaduser: seperate capability for user pictures 2013-06-14 14:04:25 +08:00
user_form.php MDL-28452 core_user: migrate social profile fields 2021-04-21 11:22:25 +02:00
version.php MDL-71583 versions: Add all the missing full-stops to version/requires 2021-05-11 20:11:07 +02:00