diff options
| author | cflem <carson.fl3ming@gmail.com> | 2016-12-29 21:21:46 -0700 |
|---|---|---|
| committer | cflem <carson.fl3ming@gmail.com> | 2016-12-29 21:21:46 -0700 |
| commit | feaeb79b6e1596c64f5a345b1017a4f9fe482d8d (patch) | |
| tree | 6335d5328eaa68fd9a7c55624dc0e919fa016226 | |
| parent | 136cdc1a8ae4345e7503da64055373a493814e90 (diff) | |
| download | bulletin-feaeb79b6e1596c64f5a345b1017a4f9fe482d8d.tar.gz | |
Fixed syntax error
| -rw-r--r-- | dash/ads.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dash/ads.php b/dash/ads.php index e259bbf..995301c 100644 --- a/dash/ads.php +++ b/dash/ads.php @@ -30,7 +30,7 @@ else ?> <p id="ename"><?=htmlentities($row['name']);?></p> <?php -if (is_null($row['rating')) +if (is_null($row['rating'])) echo ' <p id="erating">Employer Not Rated</p>'.PHP_EOL; else echo ' <p id="erating">'.intval($row['rating']).' Star Employer</p>'.PHP_EOL; |
