Update of /cvsroot/openfirst/feedback
In directory sc8-pr-cvs1:/tmp/cvs-serv6937
Modified Files:
index.php
Log Message:
Make indenting proper again, convert ISSET to isset (again) and make signature occur after a proper amount of spacing from the main filler message
Index: index.php
===================================================================
RCS file: /cvsroot/openfirst/feedback/index.php,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** index.php 13 Sep 2003 16:12:06 -0000 1.10
--- index.php 28 Sep 2003 13:34:35 -0000 1.11
***************
*** 58,62 ****
?>
<br />Your E-mail Address (used for replies):
! <input type="text" name="from" style="width: 150px;" value="<?php if(ISSET($user->email)){echo($user->email); } ?>" />
<br />Type of feedback:
<input type="radio" name="type" value="comment" />Comment
--- 58,62 ----
?>
<br />Your E-mail Address (used for replies):
! <input type="text" name="from" style="width: 150px;" value="<?php if(isset($user->email)){echo($user->email); } ?>" />
<br />Type of feedback:
<input type="radio" name="type" value="comment" />Comment
***************
*** 66,70 ****
<?php
if (function_exists("make_wysiwyg")) {
! if(ISSET($user->signature)){ $msg = "Insert your feedback here.$user->signature"; }else{ $msg = "Insert your feedback here."; }
make_wysiwyg("message",500,300,$msg);
} else {
--- 66,71 ----
<?php
if (function_exists("make_wysiwyg")) {
! if(isset($user->signature)){ $msg = "Insert your feedback here.\n\n$user->signature"; }else{ $msg = "Insert your feedback here.";
! }
make_wysiwyg("message",500,300,$msg);
} else {
|