Skip to content

Commit

Permalink
Fix undefined variable issue in mobile login page
Browse files Browse the repository at this point in the history
  • Loading branch information
maycactus-FOSS committed Aug 9, 2023
1 parent 2c88ef6 commit 3da5145
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mobile/skin/member/basic/login.skin.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@


<?php // 쇼핑몰 사용시 여기부터 ?>
<?php if ($default['de_level_sell'] == 1) { // 상품구입 권한 ?>
<?php if (isset($default['de_level_sell']) && $default['de_level_sell'] == 1) { // 상품구입 권한 ?>

<!-- 주문하기, 신청하기 -->
<?php if (preg_match("/orderform.php/", $url)) { ?>
Expand Down

0 comments on commit 3da5145

Please sign in to comment.