[eluser]Haqqi[/eluser]
it doesn't work, the language won't be loaded. Because i need it quickly, I just create override method in DM_Lang just like this:
Code:
function load($langfile, $lang = '', $return = FALSE, $add_suffix = TRUE, $alt_path = '') {
if (is_array($langfile)) {
foreach ($langfile as $_lang)
$this->load($_lang);
return $this->language;
}
in case if the first try won't return good result. Of course it will make the process longer, but I really need it quickly. If you have any other better options, I will be glad using it.