mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-05-07 22:05:05 +02:00
- upgrade scripts added for releases 1.3.x
- my_error function moved from admin/include/functions.php to include/functions.inc.php - because MySQL temporary tables are not always authorized on creation, use a temporary table name (with the current microsecond) on a non temporary table (in mass_updates function) - ability to retrieve distant full directories (usefull in upgrade scripts) - global variables $count_queries and $queries_time moved into global array $page - get_cat_display_name displays category names in correct order : the one given by uppercats - function setup_style simplified - default value for configuration parameter "show_nb_comments" set to false (less queries by default) git-svn-id: http://piwigo.org/svn/trunk@672 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -208,10 +208,7 @@ function check_login_authorization($guest_allowed = true)
|
||||
|
||||
function setup_style($style)
|
||||
{
|
||||
$template_path = 'template/' ;
|
||||
$template_name = $style ;
|
||||
$template = new Template(PHPWG_ROOT_PATH . $template_path . $template_name);
|
||||
return $template;
|
||||
return new Template(PHPWG_ROOT_PATH.'template/'.$style);
|
||||
}
|
||||
|
||||
function getuserdata($user)
|
||||
|
||||
Reference in New Issue
Block a user