From 054c3ffea2af7591c5664e6aba7ba789d3739313 Mon Sep 17 00:00:00 2001 From: =?utf8?q?St=C3=A9phane=20Jacob?= Date: Fri, 10 Sep 2010 21:00:50 +0200 Subject: [PATCH] Fixes tips addition (Closes #1122). MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Stéphane Jacob --- modules/events.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/events.php b/modules/events.php index 035f274..b8d1a60 100644 --- a/modules/events.php +++ b/modules/events.php @@ -311,10 +311,10 @@ class EventsModule extends PLModule $table_editor->describe('expiration', 'date de péremption', true); $table_editor->describe('promo_min', 'promo. min (0 aucune)', false); $table_editor->describe('promo_max', 'promo. max (0 aucune)', false); - $table_editor->describe('titre', 'titre', true); + $table_editor->describe('title', 'titre', true); $table_editor->describe('state', 'actif', true); $table_editor->describe('text', 'texte (html) de l\'astuce', false); - $table_editor->describe('priorite', '0<=priorité<=255', true); + $table_editor->describe('priority', '0<=priorité<=255', true); $table_editor->list_on_edit(false); $table_editor->apply($page, $action, $id); if (($action == 'edit' && !is_null($id)) || $action == 'update') { -- 2.1.4