Ignore:
Timestamp:
Aug 17, 2005, 4:25:38 PM (19 years ago)
Author:
plg
Message:
  • modification : major simplification of admin.php. Titles are managed by included page, localized items are managed directly in the template.
  • new : sub template admin/double_select is included in templates admin/cat_options, admin/user_perm and admin/group_perm. I haven't been able to use it in admin/picture_modify because it seems impossible to have two instance of the same sub-template without interfering.
  • modification : bug 99, in profile manager, no auto submit when changing language (useless and generate accessibility problem).
  • improvement : HTML semantically correct for administration menu, simpler syntax, less tags, correct tags (dl/dt/dd instead of div/div).
  • modification : number of waiting elements and unvalidated comments are displayed in admin/intro instead of administration menu (with a link to the dedicated pages).
  • deletion : no link to profile from admin/user_list anymore (no need).
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/user.inc.php

    r808 r817  
    2525// | USA.                                                                  |
    2626// +-----------------------------------------------------------------------+
    27 
    28 // Dynamic change of language with database persistency
    29 //
    30 // FIXME : ce bout de code fait planter l'assignation d'un language a
    31 // plusieurs users simultanement dans la nouvelle page admin/user_list.php
    32 //
    33 // if (isset($_POST['language']))
    34 // {
    35 //   $query = "UPDATE ".USERS_TABLE." SET language = '";
    36 //   $query.= $_POST['language'];
    37 //   $query.= "' WHERE id = ".$_POST['userid'].";";
    38 //   pwg_query($query);
    39 // }
    4027
    4128// retrieving connected user informations
Note: See TracChangeset for help on using the changeset viewer.