Skip to content

Commit 5137b9c

Browse files
committed
Update symlink creation message
1 parent c753586 commit 5137b9c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

server/plugins-available/shelluser_base_plugin.inc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -687,7 +687,7 @@ function _setup_shell_php() {
687687
unlink($home_php);
688688
}
689689
symlink($php_binary_path, $home_php);
690-
$app->log("Created symlink from " . $php_binary_path ." to PHP binary: " . $home_php, LOGLEVEL_DEBUG);
690+
$app->log("Created symlink from " . $home_php ." to PHP binary: " . $php_binary_path, LOGLEVEL_DEBUG);
691691
}
692692
}
693693

server/plugins-available/shelluser_jailkit_plugin.inc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -846,7 +846,7 @@ function _setup_shell_php() {
846846
unlink($home_php);
847847
}
848848
symlink($this->web['php_cli_binary'], $home_php);
849-
$app->log("Created symlink from " . $this->web['php_cli_binary'] ." to PHP binary: " . $home_php, LOGLEVEL_DEBUG);
849+
$app->log("Created symlink from " . $home_php . " to PHP binary: " . $this->web['php_cli_binary'], LOGLEVEL_DEBUG);
850850
}
851851
}
852852
} // end class

0 commit comments

Comments
 (0)