]> git.mxchange.org Git - friendica-addons.git/commitdiff
minor alterations to mibbit.php
authorTony Baldwin <tony@baldwinsoftware.com>
Fri, 2 Mar 2012 16:29:19 +0000 (11:29 -0500)
committerTony Baldwin <tony@baldwinsoftware.com>
Fri, 2 Mar 2012 16:29:19 +0000 (11:29 -0500)
mibbit.tar.gz [new file with mode: 0644]
mibbit/mibbit.php

diff --git a/mibbit.tar.gz b/mibbit.tar.gz
new file mode 100644 (file)
index 0000000..6b0a386
Binary files /dev/null and b/mibbit.tar.gz differ
index df3494a427c7e54c91124f638beddb3495e940e1..443c8881bd19cb32b1fa0cdef790705e4e2182bc 100755 (executable)
@@ -31,6 +31,8 @@ function mibbit_module() {
 
 function mibbit_content(&$a) {
 
+       $o = '';
+
 // this stuff is supposed to go in the page header
 
 $a->page['htmlhead'] .= 'session_start();  
@@ -48,15 +50,15 @@ $a->page['htmlhead'] .= 'session_start();
  
  // add the chatroom frame and some html
  
-    $s .= '<h2>chat</h2>';
-    $s .= '<center>';
-    $s .= '<iframe  src=\"<?PHP echo $uri; ?>\" frameborder=\"0\">
+    $o .= '<h2>chat</h2>';
+    $o .= '<center>';
+    $o .= '<iframe  src=\"<?PHP echo $uri; ?>\" frameborder=\"0\">
  [Your user agent does not support frames or is currently configured
  not to display frames. However, you may want to open the
  <A href=\"<?PHP echo $uri; ?>\" target=\"_blank\"> chat in a new browser window ...</A>]';
-    $s .= '</iframe>';
-    $s .= '<br>(no spaces, interpunctuation or leading ciphers in your /nick name)';
-    $s .= '<h4>type /help to learn about special commands</h4>';
-    $s .= '</center><hr>'
+    $o .= '</iframe>';
+    $o .= '<br>(no spaces, interpunctuation or leading ciphers in your /nick name)';
+    $o .= '<h4>type /help to learn about special commands</h4>';
+    $o .= '</center><hr>'
     
 }