|
Revision 727, 1.1 KB
(checked in by brieb, 2 years ago)
|
- Added more rights look ups to certain pages
- Fixed several path disclosure errors
|
-
Property svn:keywords set to
LastChangedBy LastChangedDate LastChangedRevision
|
| Line | |
|---|
| 1 | <?php if(isset($db) && isset($therecord)){?> |
|---|
| 2 | <div id="createmodifiedby" > |
|---|
| 3 | <div id="savecancel2"><?php showSaveCancel(2)?></div> |
|---|
| 4 | <table> |
|---|
| 5 | <tr id="cmFirstRow"> |
|---|
| 6 | <td class="cmTitles"> |
|---|
| 7 | <input name="createdby" type="hidden" value="<?php $therecord["createdby"] ?>" /> |
|---|
| 8 | <input name="creationdate" type="hidden" value="<?php echo formatFromSQLDatetime($therecord["creationdate"]) ?>"/> |
|---|
| 9 | created |
|---|
| 10 | </td> |
|---|
| 11 | <td><?php echo htmlQuotes($phpbms->getUserName($therecord["createdby"]))?></td> |
|---|
| 12 | <td><?php echo formatFromSQLDatetime($therecord["creationdate"]) ?></td> |
|---|
| 13 | </tr> |
|---|
| 14 | <tr> |
|---|
| 15 | <td class="cmTitles"> |
|---|
| 16 | <input name="modifiedby" type="hidden" value="<?php $therecord["modifiedby"] ?>" /> |
|---|
| 17 | <input id="cancelclick" name="cancelclick" type="hidden" value="0" /> |
|---|
| 18 | <input name="modifieddate" type="hidden" value="<?php echo formatFromSQLDatetime($therecord["modifieddate"]) ?>"/> |
|---|
| 19 | modified |
|---|
| 20 | </td> |
|---|
| 21 | <td><?php echo htmlQuotes($phpbms->getUserName($therecord["modifiedby"]))?></td> |
|---|
| 22 | <td><?php echo formatFromSQLDatetime($therecord["modifieddate"]) ?></td> |
|---|
| 23 | </tr> |
|---|
| 24 | </table> |
|---|
| 25 | </div> |
|---|
| 26 | <?php }//endif ?> |
|---|