Skip to content

Commit 3f133ef

Browse files
committed
- Minor fixes in software update plugin.
1 parent 48ced19 commit 3f133ef

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

server/plugins-available/software_update_plugin.inc.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ function process($event_name,$data) {
5858
global $app, $conf;
5959

6060
if(!$conf['software_updates_enabled'] == true) {
61-
$app->log('Software Updates not eanbled on this server. To enable updates, set $conf["software_updates_enabled"] = true; in config.inc.php',LOGLEVEL_ERROR);
61+
$app->log('Software Updates not enabled on this server. To enable updates, set $conf["software_updates_enabled"] = true; in config.inc.php',LOGLEVEL_ERROR);
6262
return false;
6363
}
6464

@@ -89,6 +89,8 @@ function process($event_name,$data) {
8989
exec("rm -rf $temp_dir");
9090
$app->log("Deleting the temp directory $temp_dir",LOGLEVEL_DEBUG);
9191
return false;
92+
} else {
93+
$app->log("md5sum of the downloaded file is verified.",LOGLEVEL_DEBUG);
9294
}
9395

9496

0 commit comments

Comments
 (0)