php8.0 버전 호환 코드 적용 및 PHP 끝 태그 삭제 일괄적용
This commit is contained in:
@ -6,7 +6,7 @@ if (!defined('_GNUBOARD_')) exit;
|
||||
<meta name="robots" content="NOINDEX, NOFOLLOW">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=yes">
|
||||
<title>소셜 로그인 - <?php echo $provider; ?></title>
|
||||
<title>소셜 로그인 - <?php echo isset($provider) ? $provider : ''; ?></title>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
|
||||
<style>
|
||||
@ -28,7 +28,7 @@ if (!defined('_GNUBOARD_')) exit;
|
||||
</head>
|
||||
<body>
|
||||
<div class="error-container">
|
||||
<h4>Error : <?php echo $code; ?></h4>
|
||||
<h4>Error : <?php echo isset($code) ? $code : ''; ?></h4>
|
||||
<div class="alert alert-danger" role="alert">
|
||||
<span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true"></span>
|
||||
<span class="sr-only">Error:</span>
|
||||
@ -64,5 +64,4 @@ if (!defined('_GNUBOARD_')) exit;
|
||||
</script>
|
||||
</html>
|
||||
<?php
|
||||
die();
|
||||
?>
|
||||
die();
|
||||
Reference in New Issue
Block a user