diff --git a/hwe/j_add_board_article.php b/hwe/j_board_article_add.php similarity index 100% rename from hwe/j_add_board_article.php rename to hwe/j_board_article_add.php diff --git a/hwe/j_add_board_comment.php b/hwe/j_board_comment_add.php similarity index 100% rename from hwe/j_add_board_comment.php rename to hwe/j_board_comment_add.php diff --git a/hwe/j_get_board_articles.php b/hwe/j_board_get_articles.php similarity index 100% rename from hwe/j_get_board_articles.php rename to hwe/j_board_get_articles.php diff --git a/hwe/j_add_diplomatic_letter.php b/hwe/j_diplomacy_send_letter.php similarity index 100% rename from hwe/j_add_diplomatic_letter.php rename to hwe/j_diplomacy_send_letter.php diff --git a/hwe/js/board.js b/hwe/js/board.js index bee0dbb6..dc08ad87 100644 --- a/hwe/js/board.js +++ b/hwe/js/board.js @@ -16,7 +16,7 @@ function submitArticle(){ $text.val(''); $.post({ - url:'j_add_board_article.php', + url:'j_board_article_add.php', dataType:'json', data:{ isSecret:isSecretBoard, @@ -60,7 +60,7 @@ function submitComment(){ $text.val(''); $.post({ - url:'j_add_board_comment.php', + url:'j_board_comment_add.php', dataType:'json', data:{ articleNo:articleNo, @@ -135,7 +135,7 @@ function drawArticles(articlesObj){ function loadArticles(){ return $.post({ - url:'j_get_board_articles.php', + url:'j_board_get_articles.php', dataType:'json', data:{ isSecret:isSecretBoard, //첫 버전이니까 전체 다 불러오자