Commit b2e8049e authored by Franco Fichtner's avatar Franco Fichtner

rc: too many newlines

(cherry picked from commit 30b18888)
parent 1a7e961d
......@@ -34,7 +34,7 @@ require_once("system.inc");
$fp = fopen('php://stdin', 'r');
echo "\nThe system will halt and power down. Do you want to proceed [y|n]? ";
echo "The system will halt and power down. Do you want to proceed [y|n]? ";
if (strcasecmp(chop(fgets($fp)), 'y') == 0) {
system_halt(true);
......
......@@ -33,7 +33,7 @@ require_once("system.inc");
$fp = fopen('php://stdin', 'r');
echo "\nThe system will reboot. Do you want to proceed [y|n]? ";
echo "The system will reboot. Do you want to proceed [y|n]? ";
if (strcasecmp(chop(fgets($fp)), 'y') == 0) {
system_reboot(true);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment