mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-03-28 17:42:57 +01:00
- bug fixed: HTML error on nested UL in categories menu.
- bug 161 fixed: guest_id not taken into account for history table insert. - bug 164 fixed: category inserted in history table becomes too long if HTML tags are kept. git-svn-id: http://piwigo.org/svn/trunk@876 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -1,7 +1,19 @@
|
||||
2005-09-21 Pierrick LE GALL
|
||||
2005-09-24 Pierrick LE GALL
|
||||
|
||||
* bug fixed: HTML error on nested UL in categories menu.
|
||||
|
||||
* bug 161 fixed: guest_id not taken into account for history table
|
||||
insert.
|
||||
|
||||
* bug 164 fixed: category inserted in history table becomes too
|
||||
long if HTML tags are kept.
|
||||
|
||||
2005-09-24 Pierrick LE GALL
|
||||
|
||||
* bug 162 fixed: division by zero when trying to view "all" items
|
||||
in admin/element_set_(global|unit)
|
||||
|
||||
* bug 156 fixed: error when selection is empty was not catched.
|
||||
|
||||
2005-09-21 Pierrick LE GALL
|
||||
|
||||
|
||||
@@ -354,15 +354,18 @@ function pwg_log( $file, $category, $picture = '' )
|
||||
|
||||
if ($conf['log'])
|
||||
{
|
||||
$login = ($user['id'] == $conf['guest_id'])
|
||||
? 'guest' : addslashes($user['username']);
|
||||
|
||||
$query = '
|
||||
INSERT INTO '.HISTORY_TABLE.'
|
||||
(date,login,IP,file,category,picture)
|
||||
VALUES
|
||||
(NOW(),
|
||||
\''.(($user['id'] == 2) ? 'guest' : addslashes($user['username'])).'\',
|
||||
\''.$login.'\',
|
||||
\''.$_SERVER['REMOTE_ADDR'].'\',
|
||||
\''.addslashes($file).'\',
|
||||
\''.addslashes($category).'\',
|
||||
\''.addslashes(strip_tags($category)).'\',
|
||||
\''.addslashes($picture).'\')
|
||||
;';
|
||||
pwg_query($query);
|
||||
|
||||
@@ -339,21 +339,26 @@ function get_html_menu_category($categories)
|
||||
global $page, $lang;
|
||||
|
||||
$ref_level = 0;
|
||||
$menu = '
|
||||
<ul class="menu">';
|
||||
$menu = '';
|
||||
|
||||
foreach ($categories as $category)
|
||||
{
|
||||
$level = substr_count($category['global_rank'], '.');
|
||||
$level = substr_count($category['global_rank'], '.') + 1;
|
||||
if ($level > $ref_level)
|
||||
{
|
||||
$menu.= '
|
||||
<ul class="menu">';
|
||||
<ul>';
|
||||
}
|
||||
else if ($level == $ref_level)
|
||||
{
|
||||
$menu.= '
|
||||
</li>';
|
||||
}
|
||||
else if ($level < $ref_level)
|
||||
{
|
||||
// we may have to close more than one level at the same time...
|
||||
$menu.= str_repeat("\n</ul>",($ref_level-$level));
|
||||
$menu.= "\n</li>";
|
||||
}
|
||||
$ref_level = $level;
|
||||
|
||||
@@ -382,12 +387,9 @@ function get_html_menu_category($categories)
|
||||
$menu.= '</span>';
|
||||
$menu.= get_icon($category['date_last']);
|
||||
}
|
||||
|
||||
$menu.= '
|
||||
</li>';
|
||||
}
|
||||
|
||||
$menu.= '
|
||||
$menu.= '</li>
|
||||
</ul>';
|
||||
|
||||
return $menu;
|
||||
|
||||
@@ -115,6 +115,7 @@ $lang['Representation of categories'] = 'Representation of categories';
|
||||
$lang['Representative'] = 'Representative';
|
||||
$lang['Represents'] = 'Represents';
|
||||
$lang['Save order'] = 'Save order';
|
||||
$lang['Select at least one picture'] = 'Select at least one picture';
|
||||
$lang['Select at least one user'] = 'Select at least one user';
|
||||
$lang['Show info'] = 'Show info';
|
||||
$lang['Show number of comments'] = 'Show number of comments';
|
||||
|
||||
@@ -115,6 +115,7 @@ $lang['Representation of categories'] = 'Repr
|
||||
$lang['Representative'] = 'Représentant';
|
||||
$lang['Represents'] = 'Représente';
|
||||
$lang['Save order'] = 'Sauvegarder l\'ordre';
|
||||
$lang['Select at least one picture'] = 'Sélectionner au moins une image';
|
||||
$lang['Select at least one user'] = 'Séléctionner au moins un utilisateur';
|
||||
$lang['Show info'] = 'Montrer les informations';
|
||||
$lang['Show number of comments'] = 'Montrer le nombre de commentaires';
|
||||
|
||||
@@ -49,9 +49,15 @@ BODY#theAdminPage #menubar {
|
||||
font-size: 100%;
|
||||
margin-top: 0;
|
||||
}
|
||||
#menubar LI.selected {
|
||||
font-weight: bold;
|
||||
|
||||
#menubar LI.selected A {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#menubar LI.selected LI A {
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
#menubar HR {
|
||||
display: block;
|
||||
margin: 10px auto;
|
||||
|
||||
Reference in New Issue
Block a user