Fix: send_naver_email include error

This commit is contained in:
2022-05-01 23:31:49 +09:00
parent 0f501acff6
commit b00e7468e3
10 changed files with 39 additions and 25 deletions
+4 -1
View File
@@ -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"];
+7 -4
View File
@@ -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);
+4 -2
View File
@@ -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"];