Skip to content
This repository has been archived by the owner on Jan 12, 2025. It is now read-only.

Commit

Permalink
修复了多余字符串bug
Browse files Browse the repository at this point in the history
  • Loading branch information
iVampireSP committed Jul 27, 2020
1 parent 9ef69dc commit 4aff9c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion php/control.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
mduiHeader($lang['controlHeader']);
mduiMenu(); ?>
<h1 class="mdui-text-color-theme"><?php echo $lang['controlh1']; ?></h1>
<h3 class="mdui-text-color-theme"><?php echo $lang['controlc'] . $_SESSION['ssname'] = $User->Getservername($_REQUEST['serverid']) . $lang['controlc1']; ?></h3>
<h3 class="mdui-text-color-theme"><?php echo $lang['controlc'] . $_SESSION['ssname'] = $User->Getservername($_REQUEST['serverid']);?><?php echo $lang['controlc1']; ?></h3>
<form name="config" method="get" action="control.php">
<input style="display: none" type="text" value="<?php echo $_REQUEST['serverid']; ?>" name="serverid" />
<input type="submit" class="mdui-btn mdui-btn-raised mdui-ripple mdui-color-theme-accent" value="<?php echo $lang['controlstart']; ?>">
Expand Down

0 comments on commit 4aff9c2

Please sign in to comment.