Skip to content

Commit

Permalink
Update inspectionview.php
Browse files Browse the repository at this point in the history
  • Loading branch information
pavlosb committed Mar 14, 2024
1 parent b7a6baa commit ba9b1fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions application/views/inspectionview.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
</div>
<?php if (isset($user_lang) && $user_lang == "greek") {

if (isset($inspection->rmrk_inspection)) { ?>
if (isset($inspection->rmrk_inspection) && $inspection->rmrk_inspection != "n/a") { ?>
<div class="col-lg-10 p-3 bg-light">
<div class="row">
<div class = "col-12">
Expand All @@ -73,7 +73,7 @@

<?php } } else {

if (isset($inspection->en_rmrk_inspection)) { ?>
if (isset($inspection->en_rmrk_inspection) && $inspection->en_rmrk_inspection != "n/a") { ?>
<div class="col-lg-10 p-3 bg-light">
<div class="row">
<div class = "col-12">
Expand Down

0 comments on commit ba9b1fa

Please sign in to comment.