Moved utils.php into the utils folder and fixed references to it

Esse commit está contido em:
FelipeNMoura
2012-04-04 20:30:52 -03:00
commit 66a6151f3b
5 arquivos alterados com 21 adições e 21 exclusões
+3 -3
Ver Arquivo
@@ -1,7 +1,7 @@
<?php
/**
* This file is part of TheWebMind 3rd generation.
*
*
* @author Felipe Nascimento de Moura <felipenmoura@gmail.com>
* @license licenses/mind3rd.license
*/
@@ -15,10 +15,10 @@
break;
case 'POST': $_REQ['data']= $_POST;
break;
case 'PUT' : parse_str(file_get_contents('php://input'), $put_vars);
case 'PUT' : parse_str(file_get_contents('php://input'), $put_vars);
$_REQ['data'] = $put_vars;
break;
default:
$_REQ['data']= null;
}
include('mind3rd/API/utils.php');
include('mind3rd/API/utils/utils.php');