Fix: send_naver_email include error
This commit is contained in:
@@ -5,9 +5,12 @@ include "./../setup/connect_db.php";
|
||||
include "./../lib/send_reply_json.php";
|
||||
include "./../lib/db_maestro.php";
|
||||
include "./../lib/maestro_log.php";
|
||||
include "./../lib/maestro_account_info.php";
|
||||
// include "./../mail/mail_setting.php";
|
||||
// include "./../mail/send_mail.php";
|
||||
|
||||
include './../mail/mail_setting.php';
|
||||
include './../mail/mail_contents.php';
|
||||
include './../lib/maestro_account_info.php';
|
||||
include "./../mail/send_naver_mail.php";
|
||||
|
||||
$maestro_extension_id = $_POST["maestro_extension_id"];
|
||||
|
||||
@@ -1,13 +1,17 @@
|
||||
<?php
|
||||
header("Content-Type: application/json");
|
||||
|
||||
error_reporting( E_ALL );
|
||||
ini_set( "display_errors", 1 );
|
||||
|
||||
include "./../lib/send_reply_json.php";
|
||||
include "./../setup/connect_db.php";
|
||||
include "./../lib/maestro_account_info.php";
|
||||
include "./../lib/db_maestro.php";
|
||||
include "./../lib/maestro_log.php";
|
||||
// include "./../mail/mail_setting.php";
|
||||
// include "./../mail/send_mail.php";
|
||||
|
||||
include './../mail/mail_setting.php';
|
||||
include './../mail/mail_contents.php';
|
||||
include './../lib/maestro_account_info.php';
|
||||
include "./../mail/send_naver_mail.php";
|
||||
|
||||
$maestroID = $_POST["maestro_id"];
|
||||
@@ -118,7 +122,6 @@ function add_default_activated_apps($maestroID) {
|
||||
WHERE Status = 1;
|
||||
";
|
||||
$stmt = $db_conn->prepare($query);
|
||||
$stmt->bind_param("i", $maestroID);
|
||||
$stmt->execute();
|
||||
$stmt->bind_result($appID);
|
||||
|
||||
|
||||
@@ -5,9 +5,11 @@ include "./../setup/connect_db.php";
|
||||
include "./../lib/send_reply_json.php";
|
||||
include "./../lib/db_maestro.php";
|
||||
include "./../lib/maestro_log.php";
|
||||
include "./../lib/maestro_account_info.php";
|
||||
include "./../mail/mail_setting.php";
|
||||
// include "./../mail/send_mail.php";
|
||||
|
||||
include './../mail/mail_setting.php';
|
||||
include './../mail/mail_contents.php';
|
||||
include './../lib/maestro_account_info.php';
|
||||
include "./../mail/send_naver_mail.php";
|
||||
|
||||
$maestro_upgrade_id = $_POST["maestro_upgrade_id"];
|
||||
|
||||
Reference in New Issue
Block a user