Changeset 3465


Ignore:
Timestamp:
Jun 26, 2009, 4:42:49 PM (15 years ago)
Author:
Criss
Message:

Fix bug on administration page (text)

Location:
extensions/CommentEditor
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • extensions/CommentEditor/administration.php

    r3462 r3465  
    11<?php
    2 /* $Id: administration.php,v 1.1 2009/06/26 08:56:32 Criss Exp $ */
     2/* $Id: administration.php,v 1.2 2009/06/26 14:40:27 Criss Exp $ */
    33if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
    44include_once(PHPWG_ROOT_PATH.'admin/include/tabsheet.class.php');
     
    3030
    3131foreach ($config_tabs as $current_tab) {
    32     $tab_name = 'tab_'.$current_tab;
     32    $tab_name = 'ce_tab_'.$current_tab;
    3333    $tabsheet->add($current_tab,
    3434                   l10n($tab_name),
  • extensions/CommentEditor/language/en_UK/plugin.lang.php

    r3462 r3465  
    11<?php
    2 /* $Id: plugin.lang.php,v 1.4 2009/06/26 08:56:33 Criss Exp $ */
     2/* $Id: plugin.lang.php,v 1.5 2009/06/26 14:40:27 Criss Exp $ */
    33if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
    44global $lang;
     
    2424$lang['ce_config_saved'] = 'Configuration successfully saved';
    2525$lang['ce_config_saved_with_errors'] = 'Configuration saved with errors';
     26$lang['ce_button_submit'] = 'Submit';
    2627
    2728// ==================================================================
  • extensions/CommentEditor/language/fr_FR/plugin.lang.php

    r3462 r3465  
    11<?php
    2 /* $Id: plugin.lang.php,v 1.5 2009/06/26 08:56:33 Criss Exp $ */
     2/* $Id: plugin.lang.php,v 1.6 2009/06/26 14:40:27 Criss Exp $ */
    33if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
    44global $lang;
     
    2323$lang['ce_config_saved'] = 'Configuration sauvée avec succès';
    2424$lang['ce_config_saved_with_errors'] = 'Configuration sauvée mais avec des erreurs';
     25$lang['ce_button_submit'] = 'Valider';
    2526
    2627// ==================================================================
  • extensions/CommentEditor/main.inc.php

    r3463 r3465  
    11<?php
    2 /* $Id: main.inc.php,v 1.13 2009/06/26 09:49:12 Criss Exp $ */
     2/* $Id: main.inc.php,v 1.15 2009/06/26 14:42:03 Criss Exp $ */
    33/*
    44 Plugin Name: Comment Editor
    5  Version: 1.0.h
     5 Version: 1.0.i
    66 Description: Allow to edit comment
    77 Plugin URI: http://piwigo.org/ext/extension_view.php?eid=296
     
    1212/** History **
    1313
    14   2009-06-26 1.0.h
     14  2009-06-26 1.0.i
     15                    Fix bug on administration page (text)
     16
     17  2009-06-26 1.0.i
    1518                    Display edit block on picture page if request comes
    1619                    from this page
     
    4750if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
    4851
    49 define('CE_VERSION',  '1.0.h');
     52define('CE_VERSION',  '1.0.i');
    5053define('CE_PATH',     PHPWG_PLUGINS_PATH.basename(dirname(__FILE__)).'/');
    5154define('CE_ROOT',     dirname(__FILE__).'/');
Note: See TracChangeset for help on using the changeset viewer.