Update of /cvsroot/phpmychat/phpMyChat-0.15/chat
In directory usw-pr-cvs1:/tmp/cvs-serv18263/chat
Modified Files:
smilies_popup.php3
Log Message:
Add the string for the max number of smilies and beautify the smilies table
Index: smilies_popup.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/smilies_popup.php3,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** smilies_popup.php3 2001/04/30 22:44:58 1.1
--- smilies_popup.php3 2001/05/07 21:12:43 1.2
***************
*** 146,149 ****
--- 146,156 ----
<body class="mainFrame" onload="if (window.focus) window.focus()" onunload="pmcKillPointer()">
<?php
+ if (C_MAX_GSMILIES != '*')
+ {
+ echo('<p>' . "\n");
+ echo("\t" . sprintf(L_SMIL_MAX, C_MAX_GSMILIES) . "\n");
+ echo('</p>' . "\n");
+ }
+
if ($jsVersion != 'noJs')
{
***************
*** 156,160 ****
<!-- Smilies codes -->
<center>
! <table cellpadding="3" width="574" class="table">
<?php
// Display smilies
--- 163,167 ----
<!-- Smilies codes -->
<center>
! <table cellpadding="3" width="574" border="1" class="table">
<?php
// Display smilies
|