Changeset 205 for trunk/phpbms/modules/base/files_addedit.php
- Timestamp:
- 03/26/07 16:50:25 (5 years ago)
- Files:
-
- 1 modified
-
trunk/phpbms/modules/base/files_addedit.php (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/phpbms/modules/base/files_addedit.php
r204 r205 74 74 75 75 76 <form action="<?php echo htmlQuotes($_SERVER["REQUEST_URI"]) ?>" method="post" enctype="multipart/form-data" name="record" on Submit="return validateForm(this);"><div id="dontSubmit"><input type="submit" value=" " onClick="return false;" /></div>76 <form action="<?php echo htmlQuotes($_SERVER["REQUEST_URI"]) ?>" method="post" enctype="multipart/form-data" name="record" onsubmit="return validateForm(this);"><div id="dontSubmit"><input type="submit" value=" " onclick="return false;" /></div> 77 77 <div class="bodyline"> 78 78 <div id="topButtons"><?php showSaveCancel(1); ?></div> … … 84 84 <p> 85 85 <label for="id">id</label><br /> 86 <input id="id" name="id" type="text" value="<?php echo $therecord["id"]; ?>" size="5" maxlength="5" readonly=" true" class="uneditable" />86 <input id="id" name="id" type="text" value="<?php echo $therecord["id"]; ?>" size="5" maxlength="5" readonly="readonly" class="uneditable" /> 87 87 </p> 88 88 <p id="roleidP"> … … 112 112 <p> 113 113 <label for="type">file type </label><span class="notes">(MIME)</span><br /> 114 <input type="text" id="type" name="type" value="<?php echo htmlQuotes($therecord["type"])?>" size="64" maxlength="100" readonly=" true" class="uneditable" style="" />114 <input type="text" id="type" name="type" value="<?php echo htmlQuotes($therecord["type"])?>" size="64" maxlength="100" readonly="readonly" class="uneditable" style="" /> 115 115 </p> 116 116 <p> … … 121 121 <?php if(isset($_GET["tabledefid"])){?> 122 122 <p><br /> 123 <input class="radiochecks" type="radio" name="newexisting" id="newfile" value="new" checked="checked" onclick="switchFile()" /><label for="newfile">new file</label> 123 <input class="radiochecks" type="radio" name="newexisting" id="newfile" value="new" checked="checked" onclick="switchFile()" /><label for="newfile">new file</label> 124 124 <input type="radio" class="radiochecks" name="newexisting" id="existingfile" value="existing" onclick="switchFile()" /><label for="existingfile">existing file</label><br /> 125 125 <span class="notes">Choose "existing file" if the file has already been uploaded into phpBMS.</span> … … 157 157 <tr> 158 158 <th align="left">table</th> 159 <th align="left" nowrap >ID</th>159 <th align="left" nowrap="nowrap">ID</th> 160 160 <th align="right" width="99%">attached</th> 161 <th align="left" nowrap > </th>161 <th align="left" nowrap="nowrap"> </th> 162 162 </tr> 163 163 <?php … … 165 165 ?> 166 166 <tr> 167 <td nowrap ><?php echo $attachmentrecord["displayname"] ?></td>167 <td nowrap="nowrap"><?php echo $attachmentrecord["displayname"] ?></td> 168 168 <td><?php echo $attachmentrecord["recordid"] ?></td> 169 169 <td align="right"><?php echo formatFromSQLDatetime($attachmentrecord["creationdate"]) ?></td>