Changeset 205 for trunk/phpbms/modules/bms/clientemailprojects_edit.php
- Timestamp:
- 03/26/07 16:50:25 (5 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/phpbms/modules/bms/clientemailprojects_edit.php
r204 r205 55 55 <body><?php include("../../menu.php")?> 56 56 57 <form action="<?php echo $_SERVER["REQUEST_URI"] ?>" method="post" name="record" on Submit="return validateForm(this);"><div id="dontSubmit"><input type="submit" value=" " onClick="return false;" /></div>57 <form action="<?php echo $_SERVER["REQUEST_URI"] ?>" method="post" name="record" onsubmit="return validateForm(this);"><div id="dontSubmit"><input type="submit" value=" " onclick="return false;" /></div> 58 58 <div class="bodyline"> 59 59 <div id="topButtons"> … … 66 66 <p> 67 67 <br /> 68 <input id="id" name="id" type="text" value="<?php echo $therecord["id"]; ?>" size="5" maxlength="5" readonly=" true" class="uneditable"/>68 <input id="id" name="id" type="text" value="<?php echo $therecord["id"]; ?>" size="5" maxlength="5" readonly="readonly" class="uneditable"/> 69 69 </p> 70 70 </fieldset> … … 83 83 <legend><label for="username">user</label></legend> 84 84 <p><br /> 85 <input id="username" name="username" type="text" value="<?php echo $username ?>" size="50" readonly=" true" class="uneditable" />85 <input id="username" name="username" type="text" value="<?php echo $username ?>" size="50" readonly="readonly" class="uneditable" /> 86 86 </p> 87 87 <?php if($therecord["userid"]!=0) {?> … … 97 97 <label for="from">from</label><br /> 98 98 <?php if(is_numeric($therecord["emailfrom"])) $therecord["emailfrom"]=getEmailInfo($therecord["emailfrom"]);?> 99 <input id="from" name="from" value="<?php echo htmlQuotes($therecord["emailfrom"])?>" readonly=" true" class="uneditable" size="60" />99 <input id="from" name="from" value="<?php echo htmlQuotes($therecord["emailfrom"])?>" readonly="readonly" class="uneditable" size="60" /> 100 100 </p> 101 101 <p> 102 102 <label for="to">to</label><br /> 103 <input id="to" name="to" value="<?php if($therecord["emailto"]=="selected" or $therecord["emailto"]=="all") echo htmlQuotes($therecord["emailto"]); else echo "saved search"?>" size="60" readonly=" true" class="uneditable" />103 <input id="to" name="to" value="<?php if($therecord["emailto"]=="selected" or $therecord["emailto"]=="all") echo htmlQuotes($therecord["emailto"]); else echo "saved search"?>" size="60" readonly="readonly" class="uneditable" /> 104 104 <?php if(is_numeric($therecord["emailto"])) {?> 105 <br /><input id="to2" name="to2" value="<?php echo htmlQuotes(showSavedSearch($therecord["emailto"]))?>" readonly=" true" class="uneditable" size="60"/>105 <br /><input id="to2" name="to2" value="<?php echo htmlQuotes(showSavedSearch($therecord["emailto"]))?>" readonly="readonly" class="uneditable" size="60"/> 106 106 <?php } ?> 107 107 </p> … … 109 109 <p> 110 110 <label for="subject">subject</label><br /> 111 <input id="subject" name="subject" type="text" value="<?php echo $therecord["subject"]?>" size="32" readonly=" true" class="uneditable" />111 <input id="subject" name="subject" type="text" value="<?php echo $therecord["subject"]?>" size="32" readonly="readonly" class="uneditable" /> 112 112 </p> 113 113 <p> 114 <textarea id="body" name="body" readonly=" true" class="uneditable" cols="80" rows="40"><?php echo htmlQuotes($therecord["body"])?></textarea>114 <textarea id="body" name="body" readonly="readonly" class="uneditable" cols="80" rows="40"><?php echo htmlQuotes($therecord["body"])?></textarea> 115 115 </p> 116 116 </fieldset>