Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib
In directory usw-pr-cvs1:/tmp/cvs-serv5689/chat/lib
Modified Files:
common.lib.php3
Log Message:
Improved handle of case where pre-defined font face is required
Index: common.lib.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/common.lib.php3,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -r1.11 -r1.12
*** common.lib.php3 2001/06/10 14:57:47 1.11
--- common.lib.php3 2001/11/30 19:29:26 1.12
***************
*** 309,313 ****
. 'charset=' . $theCharset
. $pmcQueryArgSeparator . 'medium=' . $theFontSize;
! $tmpUrl .= (empty($theFontName)) ? '' : $pmcQueryArgSeparator . 'fontName=' . $theFontName;
return $tmpUrl;
--- 309,313 ----
. 'charset=' . $theCharset
. $pmcQueryArgSeparator . 'medium=' . $theFontSize;
! $tmpUrl .= (empty($theFontName)) ? '' : $pmcQueryArgSeparator . 'fontName=' . urlencode($theFontName);
return $tmpUrl;
|