Development

#1991 (Problem loading I18n helper in SimpleCMSHelper)

You must first sign up to be able to contribute.

Ticket #1991 (closed defect: fixed)

Opened 1 year ago

Last modified 1 year ago

Problem loading I18n helper in SimpleCMSHelper

Reported by: Stefan.Koopmanschap Assigned to: francois
Priority: major Milestone:
Component: sfSimpleCMSPlugin Version: 1.0.0
Keywords: Cc:
Qualification:

Description

Having installed sfSimpleCMSPlugin and loading the default test data, I quickly ran into some problems as it had a problem loading the I18nHelper. The problem is apparently a casing problem, as the helper is called I18NHelper (notice the uppercase N).

Fix:

Open plugins/sfSimpleCMSPlugin/lib/helper/sfSimpleCMSHelper.php

change

use_helper('Form', 'Javascript', 'I18n');

to

use_helper('Form', 'Javascript', 'I18N');

This fixes the problem

Change History

07/18/07 09:11:19 changed by francois

  • status changed from new to closed.
  • resolution set to fixed.

(In [4652]) sfSimpleCMSPlugin Fixed i18n error on case sensitive filesystems (closes #1991)