Хранилища Subversion ant

Сравнить редакции

Не учитывать пробелы Редакция 208 → Редакция 209

/trunk/lib/init.php
40,6 → 40,7
$query =& $db->query("SET NAMES utf8");
 
$core = new Core;
$secure = new Security;
 
$smarty = new Smarty;
$smarty->compile_check = true;
/trunk/lib/security.php
Новый файл
0,0 → 1,38
<?php
 
/**
* Project: Ant: sources.list generator
* File: security.php
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
 
 
class Security {
// Wrapper for numbers
function wrapInt($data) {
return abs(intval($data));
}
// Wrapper for string
function wrapStr($data) {
return mysql_real_escape_string($data);
}
// Cleaner for string
function stripStr($data) {
return stripslashes($data);
}
}
?>