Skip to content

Commit

Permalink
re-order includes
Browse files Browse the repository at this point in the history
git-svn-id: https://xerteonlinetoolkits.googlecode.com/svn/branches/1.8@208 912cdd6b-5c7d-d5a7-a2ba-d0f0cdb91641
  • Loading branch information
Dave Goodwin committed Oct 27, 2011
1 parent 52a0c7f commit 575c696
Showing 1 changed file with 13 additions and 14 deletions.
27 changes: 13 additions & 14 deletions website_code/php/folders/make_new_folder.php
@@ -1,16 +1,15 @@
<?PHP /**
*
* new folder page, the sites makes a new folder
*
* @author Patrick Lockley
* @version 1.0
* @copyright Copyright (c) 2008,2009 University of Nottingham
* @package
*/
<?php
/**
*
* new folder page, the sites makes a new folder
*
* @author Patrick Lockley
* @version 1.0
* @copyright Copyright (c) 2008,2009 University of Nottingham
* @package
*/

include '../folder_library.php';
require_once("../../../config.php");

make_new_folder(mysql_real_escape_string($_POST['folder_id']),mysql_real_escape_string($_POST['folder_name']));
require_once("../../../config.php");
include '../folder_library.php';

?>
make_new_folder(mysql_real_escape_string($_POST['folder_id']),mysql_real_escape_string($_POST['folder_name']));

0 comments on commit 575c696

Please sign in to comment.