From 2d56cd823063a0c90ae5905e3f0a59776c5130ab Mon Sep 17 00:00:00 2001 From: Yannick Warnier Date: Mon, 20 Mar 2017 17:06:14 -0500 Subject: [PATCH] Minor - Learning path: update script reference in error_log --- main/lp/lp_add_audio.php | 2 +- main/lp/lp_edit_item.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/main/lp/lp_add_audio.php b/main/lp/lp_add_audio.php index 5f824691ec..340c753d61 100755 --- a/main/lp/lp_add_audio.php +++ b/main/lp/lp_add_audio.php @@ -21,7 +21,7 @@ $type = isset($_GET['type']) ? $_GET['type'] : null; $action = isset($_GET['action']) ? $_GET['action'] : null; if ((!$is_allowed_to_edit) || ($isStudentView)) { - error_log('New LP - User not authorized in lp_add_item.php'); + error_log('New LP - User not authorized in lp_add_audio.php'); header('location:lp_controller.php?action=view&lp_id='.$learnpath_id); exit; } diff --git a/main/lp/lp_edit_item.php b/main/lp/lp_edit_item.php index e39e375284..96f610f14e 100755 --- a/main/lp/lp_edit_item.php +++ b/main/lp/lp_edit_item.php @@ -65,7 +65,7 @@ $submit = isset($_POST['submit_button']) ? $_POST['submit_button'] : null; /* MAIN CODE */ if ((!$is_allowed_to_edit) || ($isStudentView)) { - error_log('New LP - User not authorized in lp_add_item.php'); + error_log('New LP - User not authorized in lp_edit_item.php'); header('location:lp_controller.php?action=view&lp_id='.$learnpath_id); exit; }