Merge branch 'master' of github.com:gnuboard/g4s
This commit is contained in:
@ -3,7 +3,7 @@ include_once('./_common.php');
|
||||
|
||||
// 로그인중인 경우 회원가입 할 수 없습니다.
|
||||
if ($is_member) {
|
||||
goto_url(G4_PATH);
|
||||
goto_url(G4_URL);
|
||||
}
|
||||
|
||||
// 세션을 지웁니다.
|
||||
|
||||
@ -1,12 +1,12 @@
|
||||
<?
|
||||
include_once('./_common.php');
|
||||
|
||||
if (isset($_SESSION['ss_mb_reg']))
|
||||
if (isset($_SESSION['ss_mb_reg']))
|
||||
$mb = get_member($_SESSION['ss_mb_reg']);
|
||||
|
||||
// 회원정보가 없다면 초기 페이지로 이동
|
||||
if (!$mb['mb_id'])
|
||||
goto_url(G4_PATH);
|
||||
if (!$mb['mb_id'])
|
||||
goto_url(G4_URL);
|
||||
|
||||
$g4['title'] = '회원가입이 완료되었습니다.';
|
||||
include_once('./_head.php');
|
||||
|
||||
@ -42,6 +42,9 @@ function get_list_thumbnail($bo_table, $wr_id, $thumb_width, $thumb_height, $is_
|
||||
$filename = basename($srcfile);
|
||||
$filepath = dirname($srcfile);
|
||||
|
||||
preg_match("/alt=[\'\"]{1}(.*)[\'\"]{1}/", $matchs[0][$i], $malt);
|
||||
$alt = get_text($malt[1]);
|
||||
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user