mirror of
https://github.com/fspc/Yellow-Bike-Database.git
synced 2026-09-03 10:21:38 -04:00
Fixes a minor textarea bug by removing whitespace in the code.
This commit is contained in:
@@ -37,7 +37,7 @@ define("TIMEZONE", "America/New_York");
|
|||||||
The first shop created, 1, makes sense. A link will show in start_shop.php.
|
The first shop created, 1, makes sense. A link will show in start_shop.php.
|
||||||
If you do not want this functionality at all, choose 0.
|
If you do not want this functionality at all, choose 0.
|
||||||
*/
|
*/
|
||||||
define("NONSHOP",0);
|
define("NONSHOP", 0);
|
||||||
|
|
||||||
// How many transactions do you want shown by default
|
// How many transactions do you want shown by default
|
||||||
define("NUMBER_OF_TRANSACTIONS", 11);
|
define("NUMBER_OF_TRANSACTIONS", 11);
|
||||||
|
|||||||
+2
-5
@@ -177,8 +177,7 @@ if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "FormEdit")) {
|
|||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><div align="right">Comments:</div></td>
|
<td><div align="right">Comments:</div></td>
|
||||||
<td><textarea name="comment" cols="45" rows="3">
|
<td><textarea name="comment" cols="45" rows="3"></textarea>
|
||||||
</textarea>
|
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
@@ -225,9 +224,7 @@ if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "FormEdit")) {
|
|||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><div align="right">Comment:</div></td>
|
<td><div align="right">Comment:</div></td>
|
||||||
<td><textarea name="comment" cols="45" rows="3">
|
<td><textarea name="comment" cols="45" rows="3"><?php echo $row_Recordset1['comment']; ?></textarea>
|
||||||
<?php echo $row_Recordset1['comment']; ?>
|
|
||||||
</textarea>
|
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<?php if(current_shop_by_ip()>=$shop_id & (current_shop_by_ip()-5)<=$shop_id ) { ?>
|
<?php if(current_shop_by_ip()>=$shop_id & (current_shop_by_ip()-5)<=$shop_id ) { ?>
|
||||||
|
|||||||
Reference in New Issue
Block a user