Skip to content

Commit

Permalink
CRM-17909. Correct parameter to ts() for risky file warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
xurizaemon committed Jan 30, 2016
1 parent 342cdcb commit 50208d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CRM/Utils/Check/Component/Security.php
Expand Up @@ -246,7 +246,7 @@ public function checkFilesAreNotPresent() {
if (file_exists($file[0])) {
$messages[] = new CRM_Utils_Check_Message(
__FUNCTION__,
ts('File \'%1\' presents a security risk and should be deleted.', array(1 => $file)),
ts('File \'%1\' presents a security risk and should be deleted.', array(1 => $file[0])),
ts('Unsafe Files'),
$file[1],
'fa-lock'
Expand Down

0 comments on commit 50208d1

Please sign in to comment.