Skip to content

Commit

Permalink
Merge pull request #381 from abhishek-webkul/gli-437
Browse files Browse the repository at this point in the history
Change demo city name from DefCity to Demo City
  • Loading branch information
rohit053 authored Jun 27, 2022
2 parents 81548be + 73817be commit 7b97409
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/hotelreservationsystem/classes/HotelHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ public function saveDummyHotelBranchInfo()
}

$obj_hotel_info->rating = 3;
$obj_hotel_info->city = 'DefCity';
$obj_hotel_info->city = 'Demo City';
if ($states = State::getStatesByIdCountry($def_cont_id)) {
$state_id = $states[0]['id_state'];
} else {
Expand Down Expand Up @@ -407,10 +407,10 @@ public function saveDummyHotelBranchInfo()
}
if (count($states) > 0) {
if ($cat_state) {
$cat_city = $this->addCategory('DefCity', $cat_state, $grp_ids);
$cat_city = $this->addCategory('Demo City', $cat_state, $grp_ids);
}
} else {
$cat_city = $this->addCategory('DefCity', $cat_country, $grp_ids);
$cat_city = $this->addCategory('Demo City', $cat_country, $grp_ids);
}
if ($cat_city) {
$cat_hotel = $this->addCategory('The Hotel Prime', $cat_city, $grp_ids, 1, $htl_id);
Expand Down

0 comments on commit 7b97409

Please sign in to comment.