diff options
| author | cflem <carson.fl3ming@gmail.com> | 2016-12-29 21:30:45 -0700 |
|---|---|---|
| committer | cflem <carson.fl3ming@gmail.com> | 2016-12-29 21:30:45 -0700 |
| commit | f06198b4ec1d2bc45b2de8695c574fca420c147f (patch) | |
| tree | ab57003bf1925d8650a3089307fc635dbef09b5e /dash | |
| parent | 083a0e4d9c6bcb24083c19727d283a340123d0fc (diff) | |
| download | bulletin-f06198b4ec1d2bc45b2de8695c574fca420c147f.tar.gz | |
Updated ads.php
Diffstat (limited to 'dash')
| -rw-r--r-- | dash/ads.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dash/ads.php b/dash/ads.php index 73d11aa..df209f0 100644 --- a/dash/ads.php +++ b/dash/ads.php @@ -13,8 +13,8 @@ $row = $result->fetch_assoc(); <div id="fulljob"> <div id="fjheader"> <h3 id="fjhtitle"><?=htmlentities($row['title']);?></h3> - <p id="fjhpay">Pays <?=number_format($row['pay'], 2);?></p> - <p id="fjhdetails"><?=date('g:i a', intval($row['time'])).' on '.date('M j, Y', intval($row['time']));?> at <?=htmlentities($row['location']);?></p> + <p id="fjhpay">Pays $<?=number_format($row['pay'], 2);?></p> + <p id="fjhdetails"><?=htmlentities($row['location']);?> at <?=date('g:i a', intval($row['time'])).' on '.date('M j, Y', intval($row['time']));?></p> </div> <div id="fjbody"> <p><?=htmlentities($row['description']);?></p> @@ -39,7 +39,7 @@ else <div id="fjfright"> <p id="eemail"><a href="mailto:<?=htmlentities($row['email']);?>"><?=htmlentities($row['email']);?></a></p> <?php -$phonelink = '+'.preg_replace('/[^0-9]/g', '', $row['phone']); +$phonelink = '+'.preg_replace('/[^0-9]/', '', $row['phone']); ?> <p id="ephone"><a href="tel:<?=$phonelink;?>"><?=htmlentities($row['phone']);?></a></p> <p id="echat"><a href="#" onclick="bullechat.gui.create('<?=htmlentities($row['email'], ENT_HTML401 | ENT_QUOTES);?>'); return false;">Open a Chat</a></p> |
