code style and quotes

This commit is contained in:
Isaac Connor 2017-10-16 08:31:35 -07:00
parent ed92abfc76
commit 5c0d8384d9
1 changed files with 8 additions and 9 deletions

View File

@ -18,15 +18,14 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
//
if ( !canEdit( 'System' ) )
{
$view = "error";
if ( !canEdit( 'System' ) ) {
$view = 'error';
return;
}
if ( $_REQUEST['id'] ) {
if ( !($newServer = dbFetchOne( 'SELECT * FROM Servers WHERE Id = ?', NULL, ARRAY($_REQUEST['id'])) ) ) {
$view = "error";
$view = 'error';
return;
}
} else {
@ -37,19 +36,19 @@ if ( $_REQUEST['id'] ) {
$focusWindow = true;
xhtmlHeaders(__FILE__, translate('Server')." - ".$newServer['Name'] );
xhtmlHeaders(__FILE__, translate('Server').' - '.$newServer['Name'] );
?>
<body>
<div id="page">
<div id="header">
<h2><?php echo translate('Server')." - ".$newServer['Name'] ?></h2>
<h2><?php echo translate('Server').' - '.$newServer['Name'] ?></h2>
</div>
<div id="content">
<form name="contentForm" method="post" action="<?php echo $_SERVER['PHP_SELF'] ?>" onsubmit="return validateForm( this, <?php echo empty($newServer['Name'])?'true':'false' ?> )">
<input type="hidden" name="view" value="<?php echo $view ?>"/>
<input type="hidden" name="object" value="server"/>
<input type="hidden" name="id" value="<?php echo validHtmlStr($_REQUEST['id']) ?>"/>
<table id="contentTable" class="major" cellspacing="0">
<table id="contentTable" class="major">
<tbody>
<tr>
<th scope="row"><?php echo translate('Name') ?></th>