Nuno Lopes wrote:
nlopess Tue May 4 10:57:42 2004 EDT

Modified files: /livedocs error.php Log:
redirect the user automatically if there is just one language on the server
improve performance in splitting languages

you didn't improve nothing, you've broke it :)


print_r(explode(' ', "en  fr      ja"));
Array
(
    [0] => en
    [1] =>
    [2] => fr
    [3] =>
    [4] =>
    [5] =>
    [6] =>
    [7] =>
    [8] => ja
)


so if I do ./configure --with-languages="en fr ja" the explode call isn't efficiant. The preg_split() was taking care of this :)


didou

Reply via email to