Merge branch 'master' into patch
This commit is contained in:
@ -118,6 +118,9 @@ $req_nick = !isset($member['mb_nick_date']) || (isset($member['mb_nick_date']) &
|
|||||||
$required = ($w=='') ? 'required' : '';
|
$required = ($w=='') ? 'required' : '';
|
||||||
$readonly = ($w=='u') ? 'readonly' : '';
|
$readonly = ($w=='u') ? 'readonly' : '';
|
||||||
|
|
||||||
|
$agree = preg_replace('#[^0-9]#', '', $agree);
|
||||||
|
$agree2 = preg_replace('#[^0-9]#', '', $agree2);
|
||||||
|
|
||||||
// add_javascript('js 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
// add_javascript('js 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||||
if ($config['cf_use_addr'])
|
if ($config['cf_use_addr'])
|
||||||
add_javascript(G5_POSTCODE_JS, 0); //다음 주소 js
|
add_javascript(G5_POSTCODE_JS, 0); //다음 주소 js
|
||||||
|
|||||||
@ -1309,7 +1309,7 @@ function view_file_link($file, $width, $height, $content='')
|
|||||||
|
|
||||||
if (preg_match("/\.({$config['cf_image_extension']})$/i", $file)) {
|
if (preg_match("/\.({$config['cf_image_extension']})$/i", $file)) {
|
||||||
$img = '<a href="'.G5_BBS_URL.'/view_image.php?bo_table='.$board['bo_table'].'&fn='.urlencode($file).'" target="_blank" class="view_image">';
|
$img = '<a href="'.G5_BBS_URL.'/view_image.php?bo_table='.$board['bo_table'].'&fn='.urlencode($file).'" target="_blank" class="view_image">';
|
||||||
$img .= '<img src="'.G5_DATA_URL.'/file/'.$board['bo_table'].'/'.urlencode($file).'" alt="'.$content.'">';
|
$img .= '<img src="'.G5_DATA_URL.'/file/'.$board['bo_table'].'/'.urlencode($file).'" alt="'.$content.'" '.$attr.'>';
|
||||||
$img .= '</a>';
|
$img .= '</a>';
|
||||||
|
|
||||||
return $img;
|
return $img;
|
||||||
|
|||||||
@ -180,7 +180,7 @@ $(window).on("load", function() {
|
|||||||
<option value="wr_name,1"<?php echo get_selected($sfl, "wr_name,1"); ?>>글쓴이</option>
|
<option value="wr_name,1"<?php echo get_selected($sfl, "wr_name,1"); ?>>글쓴이</option>
|
||||||
<option value="wr_name,0"<?php echo get_selected($sfl, "wr_name,0"); ?>>글쓴이(코)</option>
|
<option value="wr_name,0"<?php echo get_selected($sfl, "wr_name,0"); ?>>글쓴이(코)</option>
|
||||||
</select>
|
</select>
|
||||||
<input name="stx" value="<?php echo stripslashes($stx) ?>" placeholder="검색어(필수)" required id="stx" class="required" size="15" maxlength="20">
|
<input name="stx" value="<?php echo stripslashes($stx) ?>" placeholder="검색어(필수)" required id="stx" class="required frm_input" size="15" maxlength="20">
|
||||||
<input type="submit" value="검색">
|
<input type="submit" value="검색">
|
||||||
</form>
|
</form>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|||||||
Reference in New Issue
Block a user