diff --git a/app/edit/clipdelete.php b/app/edit/clip_delete.php similarity index 82% rename from app/edit/clipdelete.php rename to app/edit/clip_delete.php index 0137e8a54f..afcf498ade 100644 --- a/app/edit/clipdelete.php +++ b/app/edit/clip_delete.php @@ -17,23 +17,27 @@ The Initial Developer of the Original Code is Mark J Crane - Portions created by the Initial Developer are Copyright (C) 2008-2012 + Portions created by the Initial Developer are Copyright (C) 2008-2019 the Initial Developer. All Rights Reserved. Contributor(s): Mark J Crane James Rose */ -include "root.php"; -require_once "resources/require.php"; -require_once "resources/check_auth.php"; -if (permission_exists('script_editor_save')) { - //access granted -} -else { - echo "access denied"; - exit; -} + +//includes + include "root.php"; + require_once "resources/require.php"; + require_once "resources/check_auth.php"; + +//check permissions + if (permission_exists('edit_save')) { + //access granted + } + else { + echo "access denied"; + exit; + } //add multi-lingual support $language = new text; @@ -59,6 +63,6 @@ else { } //redirect the browser - header("Location: clipoptions.php"); + header("Location: clip_options.php"); -?> \ No newline at end of file +?>