make this look more like an internal function

git-svn-id: file:///home/shish/svn/shimmie2/trunk@261 7f39781d-f577-437e-ae19-be835c7a54ca
This commit is contained in:
shish 2007-07-12 07:26:50 +00:00
parent e4657006d3
commit 34d95d594d
2 changed files with 2 additions and 2 deletions

View file

@ -144,7 +144,7 @@ function get_thumbnail_size($orig_width, $orig_height) {
}
# $db is the connection object
function CountExecs($db, $sql, $inputarray) {
function _count_execs($db, $sql, $inputarray) {
global $_execs;
if(DEBUG) {
$fp = fopen("sql.log", "a");

View file

@ -31,7 +31,7 @@ foreach($files as $filename) {
}
$database = new Database();
$database->db->fnExecute = 'CountExecs';
$database->db->fnExecute = '_count_execs';
$config = new Config();
$_theme = $config->get_string("theme", "default");
require_once "themes/$_theme/page.class.php";