From 1d3fc9005f00927c19c291f33b5bfffdd81cad6e Mon Sep 17 00:00:00 2001 From: rvelices Date: Thu, 8 Sep 2011 18:22:27 +0000 Subject: - reoptimize queries for MySql - week starts on monday/sunday applies also to weekly calendar git-svn-id: http://piwigo.org/svn/trunk@12118 68402e56-0260-453c-a942-63ccdbb3a9ee --- include/functions_calendar.inc.php | 33 --------------------------------- 1 file changed, 33 deletions(-) (limited to 'include/functions_calendar.inc.php') diff --git a/include/functions_calendar.inc.php b/include/functions_calendar.inc.php index cbd3eec25..904514cd1 100644 --- a/include/functions_calendar.inc.php +++ b/include/functions_calendar.inc.php @@ -289,37 +289,4 @@ WHERE id IN (' . implode(',',$page['items']) .')'; } pwg_debug('end initialize_calendar'); } - -function array_to_int($array) -{ - $result = array(); - foreach ($array as $k => $v) - { - if ((int)$k==$k) - { - $key = (int) $k; - } - else - { - $key = $k; - } - if (is_array($v)) - { - $result[$key] = array_to_int($v); - } - else - { - if (is_int($v)) - { - $value = (int) $v; - } - else - { - $value = $v; - } - $result[$key] = $value; - } - } - return $result; -} ?> \ No newline at end of file -- cgit v1.2.3