Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs
In directory usw-pr-cvs1:/tmp/cvs-serv17303/chat/lib/index_libs
Modified Files:
main_index.lib.php3
Log Message:
Oups, the 'lang' parameter was lacking at the flags links!
Index: main_index.lib.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs/main_index.lib.php3,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** main_index.lib.php3 2001/04/04 08:36:06 1.2
--- main_index.lib.php3 2001/04/04 09:06:54 1.3
***************
*** 602,606 ****
$i++;
echo("\t\t\t\t\t\t\t");
! echo(' <a href="' . $action . '?' . dbSessionSID('GET') .'">');
echo('<img src="' . _CHAT_PATH . 'localization/' . $name . '/flag.gif" border="0" width="24" height="16" alt="' . ucfirst(str_replace('_', ' ', $name)) . '" /></a>');
if ($i % 15 == 0 && $i < count($availableLanguages))
--- 602,606 ----
$i++;
echo("\t\t\t\t\t\t\t");
! echo(' <a href="' . $action . '?' . dbSessionSID('GET') . $pmcQueryArgSeparator . 'lang=' . $name . '">');
echo('<img src="' . _CHAT_PATH . 'localization/' . $name . '/flag.gif" border="0" width="24" height="16" alt="' . ucfirst(str_replace('_', ' ', $name)) . '" /></a>');
if ($i % 15 == 0 && $i < count($availableLanguages))
|