Author: pwang
Date: 2011-12-22 13:56:45 -0800 (Thu, 22 Dec 2011)
New Revision: 27860
Modified:
new_cytoscape_website/bugreport/bugreport.php
Log:
updated
Modified: new_cytoscape_website/bugreport/bugreport.php
===================================================================
--- new_cytoscape_website/bugreport/bugreport.php 2011-12-22 20:33:11 UTC
(rev 27859)
+++ new_cytoscape_website/bugreport/bugreport.php 2011-12-22 21:56:45 UTC
(rev 27860)
@@ -145,13 +145,13 @@
?>
<form action="<?php echo $_SERVER['PHP_SELF'] ?>" method="post"
enctype="multipart/form-data" name="submitbug" id="form1">
<label for="tfName">Name</label>
- <input name="tfName" type="text" id="tfName" value="<?php
echo $userInput['name']; ?>" />
+ <input name="tfName" type="text" id="tfName" value="<?php
if (isset($userInput['name'])) echo $userInput['name']; ?>" />
<div>
<div>
<label for="tfEmail">Email</label>
- <input name="tfEmail" type="text" id="tfEmail" value="<?php echo
$userInput['email']; ?>" />
+ <input name="tfEmail" type="text" id="tfEmail" value="<?php if
(isset($userInput['email'])) echo $userInput['email']; ?>" />
* Optional,
If you want feedback
@@ -176,7 +176,7 @@
<label for="taDescription">Problem description</label>
</div>
<div>
- <textarea name="taDescription" id="taDescription" cols="80"
rows="10"><?php echo $userInput['description']; ?></textarea>
+ <textarea name="taDescription" id="taDescription" cols="80"
rows="10"><?php if (isset($userInput['description'])) echo
$userInput['description']; ?></textarea>
</div>
<div>
--
You received this message because you are subscribed to the Google Groups
"cytoscape-cvs" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/cytoscape-cvs?hl=en.