새창에서 href 값이 없어 undefined 오류 날 수 있는 문제 수정

This commit is contained in:
chicpro
2013-03-19 09:06:44 +09:00
parent 135b74e83a
commit 5c386ba2c4
2 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@ if (!$po_id) {
$po = sql_fetch(" select * from {$g4['poll_table']} where po_id = '$po_id' ");
?>
<form name="fpoll" action="<?=G4_BBS_URL?>/poll_update.php" onsubmit="return fpoll_submit(this);" target="win_poXll" method="post">
<form name="fpoll" action="<?=G4_BBS_URL?>/poll_update.php" onsubmit="return fpoll_submit(this);" target="win_poll" method="post">
<input type="hidden" name="po_id" value="<?=$po_id?>">
<input type="hidden" name="skin_dir" value="<?=$skin_dir?>">
<section id="poll">
@ -55,7 +55,7 @@ function fpoll_submit(f)
return false;
}
win_poll();
win_poll(f.action);
return true;
}

View File

@ -44,7 +44,7 @@ function fpoll_submit(f)
return false;
}
win_poll();
win_poll(f.action);
return true;
}