Changeset 205 for trunk/phpbms/modules/base/modules_view.php
- Timestamp:
- 03/26/07 16:50:25 (5 years ago)
- Files:
-
- 1 modified
-
trunk/phpbms/modules/base/modules_view.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/phpbms/modules/base/modules_view.php
r204 r205 57 57 <body><?php include("../../menu.php")?> 58 58 59 <form action="<?php echo $_SERVER["PHP_SELF"] ?>" method="post" name="record" on Submit="return validateForm(this);">59 <form action="<?php echo $_SERVER["PHP_SELF"] ?>" method="post" name="record" onsubmit="return validateForm(this);"> 60 60 <div class="bodyline"> 61 61 <h1 id="topTitle"><span><?php echo $pageTitle ?></span></h1> … … 65 65 <p> 66 66 <label for="id">id</label><br /> 67 <input id="id" name="id" type="text" value="<?php echo $therecord["id"]; ?>" size="5" maxlength="5" readonly=" true" class="uneditable"/>67 <input id="id" name="id" type="text" value="<?php echo $therecord["id"]; ?>" size="5" maxlength="5" readonly="readonly" class="uneditable"/> 68 68 </p> 69 69 <p> 70 70 <label for="version">version</label><br /> 71 <input id="version" name="version" type="text" value="<?php echo $therecord["version"]; ?>" size="8" maxlength="8" readonly=" true" class="uneditable" />71 <input id="version" name="version" type="text" value="<?php echo $therecord["version"]; ?>" size="8" maxlength="8" readonly="readonly" class="uneditable" /> 72 72 </p> 73 73 </fieldset> … … 78 78 <p> 79 79 <label for="displayname">name</label><br /> 80 <input id="displayname" name="displayname" type="text" value="<?php echo htmlQuotes($therecord["displayname"]); ?>" size="45" maxlength="128" readonly=" true" class="uneditable" />80 <input id="displayname" name="displayname" type="text" value="<?php echo htmlQuotes($therecord["displayname"]); ?>" size="45" maxlength="128" readonly="readonly" class="uneditable" /> 81 81 </p> 82 82 83 83 <p> 84 84 <label for="name">folder name/location</label><br /> 85 <input id="name" name="name" type="text" value="<?php echo htmlQuotes($therecord["name"]); ?>" size="64" maxlength="128" readonly=" true" class="uneditable" />85 <input id="name" name="name" type="text" value="<?php echo htmlQuotes($therecord["name"]); ?>" size="64" maxlength="128" readonly="readonly" class="uneditable" /> 86 86 </p> 87 87 </fieldset>