Hi, i use the UTF-8 charset in the whole application (database, views, controllers, etc), but for a strange reason, when i render the data from the controller to the view, it seems that the charset is missing or something, and some strange characters appears when there must be ñ's, tildes, etc.... The data are ok from model to controller. But not from controller to view. must i set any parameter in the framework or something?
i've found the problem. in the ApplicationController i'd set the function __construct to force de UTF-8 for the database, and in the controller i'd forgotten to call parent::__construct();