Skip to content

Commit

Permalink
[#318680] fixed print error messages When complete installation
Browse files Browse the repository at this point in the history
  • Loading branch information
Joungkyun committed Jan 15, 2016
1 parent 720fe43 commit 2b9245b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
14 changes: 7 additions & 7 deletions jsboard-2/INSTALLER/session.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
# $Id: session.php,v 1.14 2014-03-06 17:31:40 oops Exp $
# $Id: session.php,v 1.15 2016-01-15 08:39:14 oops Exp $

/*
* Local variables:
Expand All @@ -11,17 +11,17 @@
* vim: filetype=php et ts=2 sw=2
*/

if (file_exists('../config/global.php')) {
Header ('Content-Type: text/plain; charset=utf-8');
printf ('Already installed!!!');
exit;
}

session_start(); // session을 시작한다.
include_once '../include/variable.php';
require_once '../include/print.php';
parse_query_str();
if ($mode == "login") {
if (file_exists('../config/global.php')) {
Header ('Content-Type: text/plain; charset=utf-8');
printf ('Already installed!!!');
exit;
}

$_SESSION['mysqlpass'] = $mysqlpass; //세션 등록한다.
header("Location: install.php?langss=$langss");
exit;
Expand Down
3 changes: 2 additions & 1 deletion jsboard-2/doc/en/Changelog
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ it as needed for himeself/herself and must read jsboard/README.OTHERS.OS
file.

******************************************************************************
$Id: Changelog,v 1.296 2016-01-15 08:28:12 oops Exp $
$Id: Changelog,v 1.297 2016-01-15 08:39:14 oops Exp $


-----------------------------------------------------------------------------
Expand All @@ -21,6 +21,7 @@ Fri, Jan, 15 2016
by Joungkyun.KIm
- [#318679] fixed db connect error with mysqli extension on INSTALLER
- [#318681] fixed PHP Fatal error: Function name must be a string
- [#318680] fixed print error messages When complete installation


-----------------------------------------------------------------------------
Expand Down
3 changes: 2 additions & 1 deletion jsboard-2/doc/ko/Changelog
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Any one who wants install this package on any other platform must revise
it as needed for himeself/herself and must read jsboard/README.OTHERS.OS
file.

$Id: Changelog,v 1.313 2016-01-15 08:28:12 oops Exp $
$Id: Changelog,v 1.314 2016-01-15 08:39:14 oops Exp $

******************************************************************************

Expand All @@ -24,6 +24,7 @@ $Id: Changelog,v 1.313 2016-01-15 08:28:12 oops Exp $
by 김정균
- [#318679] INSTALLER에서 mysqli 확장 사용시에 DB 접속 안되는 문제 수정
- [#318681] fixed PHP Fatal error: Function name must be a string
- [#318680] install 정상 완료시에도 에러 메시지 출력되는 문제 수정


-----------------------------------------------------------------------------
Expand Down

0 comments on commit 2b9245b

Please sign in to comment.