Changeset 27129


Ignore:
Timestamp:
Feb 1, 2014, 10:35:57 PM (10 years ago)
Author:
LucMorizur
Message:

Version 2.3 beta, still some jQuery improvements needed

Location:
extensions/LCAS
Files:
54 added
1 deleted
7 edited

Legend:

Unmodified
Added
Removed
  • extensions/LCAS/branch/2.3/CHANGELOG.txt

    r27127 r27129  
    1 2014-01-31 2.2.5
     12014-01-31 2.3.0
    22                  Compatibility (correct, this time :-/ ) with version 2.6 of
    33                  Piwigo: remove admin/template/header21.tpl and reference to
  • extensions/LCAS/branch/2.3/main.inc.php

    r27127 r27129  
    22/*
    33Plugin Name: LCAS
    4 Version: 2.2.5
     4Version: 2.3.0
    55Description: Allow to disable login/register name to be sensible to the case/accents
    66Plugin URI: http://fr.piwigo.org/ext/extension_view.php?eid=513
  • extensions/LCAS/trunk/CHANGELOG.txt

    r25774 r27129  
    1 2011-27-04 2.2.4
     12014-01-31 2.3.0
     2                  Compatibility (correct, this time :-/ ) with version 2.6 of
     3                  Piwigo: remove admin/template/header21.tpl and reference to
     4                  this file
     5
     62013-12-01 2.2.4
    27                  Compatibility with version 2.6 of Piwigo: remove usage of
    38                  get_email_address_as_display_text() which is removed from
  • extensions/LCAS/trunk/admin/LCAS_admin.php

    r25774 r27129  
    187187  'LCAS_VERSION'    => $version,
    188188  'LCAS_PATH'       => LCAS_PATH,
    189   'PHPWG_VERSION'   => PHPWG_VERSION,
    190189  'LCAS_PATH_ABS'   => LCAS_PATH_ABS,
    191190  'LCAS_Option'     => $conf_LCAS[0],
  • extensions/LCAS/trunk/admin/template/global.tpl

    r10643 r27129  
    11{html_head}
    2 {if PHPWG_VERSION < 2.2 }
    3   {include file= $LCAS_PATH_ABS|@cat:'template/header21.tpl'}
    4 {else}
    52  {include file= $LCAS_PATH_ABS|@cat:'template/header22.tpl'}
    6 {/if}
    73{/html_head}
    84
  • extensions/LCAS/trunk/language/fr_FR/plugin.lang.php

    r13246 r27129  
    4646/* Email subject */
    4747$lang['Username_updated_for_%s'] = 'Nom d\'utilisateur mis à jour pour %s';
    48 $lang['LCAS_NewUsername: %s'] = 'Votre nouveau nom d\'utilisateur&nbsp;: %s';
    49 $lang['LCAS_NewUser_Email: %s'] = 'Correspondant à l\'adresse de courriel&nbsp;: %s';
     48$lang['LCAS_NewUsername: %s'] = 'Votre nouveau nom d\'utilisateur : %s';
     49$lang['LCAS_NewUser_Email: %s'] = 'Correspondant à l\'adresse de courriel : %s';
    5050?>
  • extensions/LCAS/trunk/main.inc.php

    r25774 r27129  
    22/*
    33Plugin Name: LCAS
    4 Version: 2.2.4
     4Version: 2.3.0
    55Description: Allow to disable login/register name to be sensible to the case/accents
    66Plugin URI: http://fr.piwigo.org/ext/extension_view.php?eid=513
     
    3838  $name = $plugin['name'];
    3939
    40   // Compliance with Piwigo 2.2
    41   if (version_compare(PHPWG_VERSION, '2.2', '>=') )
    42   {
    43     array_push($menu,
    44       array(
    45         'NAME' => $name,
    46         'URL' => get_root_url().'admin.php?page=plugin-'.basename(LCAS_PATH)
    47       )
    48     );
    49   }
    50   else // Compliance with Piwigo 2.1
    51   {
    52     array_push($menu,
    53       array(
    54         'NAME' => $name,
    55         'URL'  => get_admin_plugin_menu_link(LCAS_PATH.'/admin/LCAS_admin.php')
    56       )
    57     );
    58   }
     40  array_push($menu,
     41    array(
     42      'NAME' => $name,
     43      'URL' => get_root_url().'admin.php?page=plugin-'.basename(LCAS_PATH)
     44    )
     45  );
    5946
    6047  return $menu;
Note: See TracChangeset for help on using the changeset viewer.