Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs
In directory usw-pr-cvs1:/tmp/cvs-serv6833/chat/lib/index_libs
Modified Files:
main_index.lib.php3
Log Message:
Do not display a flag if there is only one translation
Index: main_index.lib.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs/main_index.lib.php3,v
retrieving revision 1.22
retrieving revision 1.23
diff -C2 -r1.22 -r1.23
*** main_index.lib.php3 2001/04/23 18:22:14 1.22
--- main_index.lib.php3 2001/04/27 21:34:37 1.23
***************
*** 616,620 ****
<?php
// Displays the flags for languages if necessary
! if (C_MULTI_LANG == 1)
{
echo("\n");
--- 616,620 ----
<?php
// Displays the flags for languages if necessary
! if (C_MULTI_LANG == 1 && count($availableLanguages) > 1)
{
echo("\n");
|