* Implemented SEND_LISTING mode in the session proxy
[citadel.git] / ctdlphp / who.php
index 92d7ccb8dd5332f3d5d7d756eda9ca58d03d4c8f..8f0bf9f3de85ebbcffb004dd72c2bf7f5ebd8690 100644 (file)
@@ -3,15 +3,15 @@
        include "ctdlheader.php";
        bbs_page_header();
 
-       echo "This is an example of the use of ctdl_rwho() to display the " ;
-       echo "list of users currently logged in.<BR><BR>\n" ;
-
-       echo "<TABLE border=1>";
-       echo "<TR>";
-       echo "<TD><B>User</B></TD>";
-       echo "<TD><B>Room</B></TD>";
-       echo "<TD><B>Host</B></TD>";
-       echo "</TR>";
+       echo    "This is an example of the use of ctdl_rwho() to display " .
+               "the list of users currently logged in.<BR><BR>\n" ;
+
+       echo    "<TABLE border=1>" .
+               "<TR>" .
+               "<TD><B>User</B></TD>" .
+               "<TD><B>Room</B></TD>" .
+               "<TD><B>Host</B></TD>" .
+               "</TR>" ;
 
        list($num_users, $wholist) = ctdl_rwho();