Calendar: Fix error with recent version of PHP and Maria DB causing error with white space around column's names -refs BT#19501

pull/4102/head
NicoDucou 4 years ago
parent 99b3391961
commit c699f6e02b
  1. 4
      main/mySpace/calendar_plan.php

@ -23,9 +23,9 @@ $searchYear = isset($_GET['year']) ? (int) $_GET['year'] : $currentYear;
$currentOrder = isset($_GET['order']) && 'desc' === $_GET['order'] ? 'desc' : 'asc';
if (api_is_western_name_order()) {
$orderBy = " firstname ";
$orderBy = "firstname";
} else {
$orderBy = " lastname ";
$orderBy = "lastname";
}
$students = UserManager::getUsersFollowedByUser(

Loading…
Cancel
Save