We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33e6e02 commit 0482ae7Copy full SHA for 0482ae7
web/templates/pages/edit_server.html
@@ -981,13 +981,11 @@
981
</tr>
982
<tr>
983
<td>
984
- <textarea size="20" class="vst-textinput short" name="v_api_allowed_ip">
985
- <?php
986
- foreach(explode(',',$_SESSION['API_ALLOWED_IP']) as $ip ){
987
- echo $ip."\n";
+ <textarea size="20" class="vst-textinput short" name="v_api_allowed_ip"><?php
+ foreach(explode(',',$_SESSION['API_ALLOWED_IP']) as $ip ){
+ echo trim($ip)."\n";
988
}
989
- ?>
990
- </textarea>
+ ?></textarea>
991
<br><br>
992
</td>
993
0 commit comments