The branch, master has been updated via a63410cfbfd06dc6df6017a81d8e41cd936f1ff9 (commit) from 3c475d85992a844f416f63c8d49c21217532c7e3 (commit)
- Log ----------------------------------------------------------------- commit a63410cfbfd06dc6df6017a81d8e41cd936f1ff9 Author: Marc Delisle marc@infomarc.info Date: Sat Apr 10 09:41:40 2010 -0400
Use input field instead of textarea for additional criteria
-----------------------------------------------------------------------
Summary of changes: db_qbe.php | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/db_qbe.php b/db_qbe.php index 04a7e55..5b8c817 100644 --- a/db_qbe.php +++ b/db_qbe.php @@ -384,7 +384,7 @@ for ($y = 0; $y <= $row; $y++) { $or = 'Or' . $w . '[' . $z . ']'; ?> <td align="center"> - <textarea cols="20" rows="2" style="width: <?php echo $realwidth; ?>" name="<?php echo $or; ?>" dir="<?php echo $text_dir; ?>"></textarea> + <input type="text" name="Or<?php echo $or; ?>" class="textfield" style="width: <?php echo $realwidth; ?>" size="20" /> </td> <?php $z++; @@ -397,7 +397,7 @@ for ($y = 0; $y <= $row; $y++) { $or = 'Or' . $w . '[' . $z . ']'; ?> <td align="center"> - <textarea cols="20" rows="2" style="width: <?php echo $realwidth; ?>" name="<?php echo $or; ?>" dir="<?php echo $text_dir; ?>"></textarea> + <input type="text" name="Or<?php echo $or; ?>" class="textfield" style="width: <?php echo $realwidth; ?>" size="20" /> </td> <?php $z++; @@ -464,7 +464,7 @@ for ($y = 0; $y <= $row; $y++) { $or = 'Or' . $w . '[' . $z . ']'; ?> <td align="center"> - <textarea cols="20" rows="2" style="width: <?php echo $realwidth; ?>" name="<?php echo $or; ?>" dir="<?php echo $text_dir; ?>"></textarea> + <input type="text" name="Or<?php echo $or; ?>" class="textfield" style="width: <?php echo $realwidth; ?>" size="20" /> </td> <?php $z++; @@ -485,7 +485,7 @@ for ($y = 0; $y <= $row; $y++) { } ?> <td align="center"> - <textarea cols="20" rows="2" style="width: <?php echo $realwidth; ?>" name="Or<?php echo $w . '[' . $z . ']'; ?>" dir="<?php echo $text_dir; ?>"><?php echo htmlspecialchars($stripped_or); ?></textarea> + <input type="text" name="Or<?php echo $w . '[' . $z . ']'; ?>" value="<?php echo htmlspecialchars($stripped_or); ?>" class="textfield" style="width: <?php echo $realwidth; ?>" size="20" /> </td> <?php if (!empty(${$or}) && isset(${$or}[$x])) {
hooks/post-receive