Skip to content

Commit

Permalink
vvv
Browse files Browse the repository at this point in the history
  • Loading branch information
nanthakumar5 committed Dec 27, 2022
1 parent b263a1d commit 856fcae
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/Views/site/myaccount/pastactivity/view.php
Expand Up @@ -123,7 +123,7 @@
<?php
}
$pricetype = '';
if($barnstalldata['price_type']!=0){
if($barnstalldata['price_type']!=0 && !in_array($barnstalldata['price_type'], ['1','2','3'])){
$pricetype = '<span class="pricelist_tagline">('.$pricelists[$barnstalldata['price_type']].')</span>';
}
?>
Expand Down Expand Up @@ -184,7 +184,7 @@
<?php
}
$pricetype = '';
if($rvbarnstalldata['price_type']!=0){
if($rvbarnstalldata['price_type']!=0 && !in_array($rvbarnstalldata['price_type'], ['1','2','3'])){
$pricetype = '<span class="pricelist_tagline">('.$pricelists[$rvbarnstalldata['price_type']].')</span>';
}
?>
Expand Down
4 changes: 2 additions & 2 deletions app/Views/site/myaccount/reservation/view.php
Expand Up @@ -134,7 +134,7 @@
<?php
}
$pricetype = '';
if($barnstalldata['price_type']!=0){
if($barnstalldata['price_type']!=0 && !in_array($barnstalldata['price_type'], ['1','2','3'])){
$pricetype = '<span class="pricelist_tagline">('.$pricelists[$barnstalldata['price_type']].')</span>';
}
?>
Expand Down Expand Up @@ -200,7 +200,7 @@
<?php
}
$pricetype = '';
if($rvbarnstalldata['price_type']!=0){
if($rvbarnstalldata['price_type']!=0 && !in_array($rvbarnstalldata['price_type'], ['1','2','3'])){
$pricetype = '<span class="pricelist_tagline">('.$pricelists[$rvbarnstalldata['price_type']].')</span>';
}
?>
Expand Down

0 comments on commit 856fcae

Please sign in to comment.