Skip to content

Commit

Permalink
php lint
Browse files Browse the repository at this point in the history
  • Loading branch information
zaliqarosli committed Feb 16, 2023
1 parent 733be8d commit f6182f5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion modules/document_repository/php/module.class.inc
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,10 @@ class Module extends \Module
$last_login = $user->getLastLogin($DB);

$docs = $DB->pselect(
"SELECT File_name, Date_uploaded, CONCAT(uploaded_by, '/', File_name) AS Data_dir FROM document_repository
"SELECT File_name,
Date_uploaded,
CONCAT(uploaded_by, '/', File_name) AS Data_dir
FROM document_repository
ORDER BY Date_uploaded DESC LIMIT 4",
[]
);
Expand Down

0 comments on commit f6182f5

Please sign in to comment.