Deprecated: Optional parameter warning message 경고메시지 나오는 함수 코드 수정
This commit is contained in:
@ -2129,7 +2129,7 @@ function time_select($time, $name="")
|
|||||||
preg_match("/([0-9]{2}):([0-9]{2}):([0-9]{2})/", $time, $m);
|
preg_match("/([0-9]{2}):([0-9]{2}):([0-9]{2})/", $time, $m);
|
||||||
|
|
||||||
// 시
|
// 시
|
||||||
$s .= "<select name='{$name}_h'>";
|
$s = "<select name='{$name}_h'>";
|
||||||
for ($i=0; $i<=23; $i++) {
|
for ($i=0; $i<=23; $i++) {
|
||||||
$s .= "<option value='$i'";
|
$s .= "<option value='$i'";
|
||||||
if ($i == $m['0']) {
|
if ($i == $m['0']) {
|
||||||
|
|||||||
@ -2747,7 +2747,7 @@ function is_inicis_order_pay($type){
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
function get_item_images_info($it, $size=array(), $image_width, $image_height){
|
function get_item_images_info($it, $size=array(), $image_width=0, $image_height=0){
|
||||||
|
|
||||||
if( !(is_array($it) && $it) ) return array();
|
if( !(is_array($it) && $it) ) return array();
|
||||||
$images = array();
|
$images = array();
|
||||||
|
|||||||
@ -151,7 +151,7 @@ function social_before_join_check($url=''){
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
function social_get_data($by='provider', $provider, $user_profile){
|
function social_get_data($by, $provider, $user_profile){
|
||||||
global $g5;
|
global $g5;
|
||||||
|
|
||||||
// 소셜 가입이 되어 있는지 체크
|
// 소셜 가입이 되어 있는지 체크
|
||||||
|
|||||||
Reference in New Issue
Block a user