Verfasst: 30.06.2005 18:17
Ist drin.. das popup bleibt trotz allem leerSupersonic hat geschrieben:Die chatspot_front.php muß in den Foren-Root, alle anderen ins Verzeichnis chatspot.
Ist drin.. das popup bleibt trotz allem leerSupersonic hat geschrieben:Die chatspot_front.php muß in den Foren-Root, alle anderen ins Verzeichnis chatspot.
Und siehe da..... Mein Chat läuft wie doll und verrückt.ich denke das es noch an der Version liegt.
Wie gesagt im Beitrag davor nehm MOD Version: 1.0.0
die höhere hat noch zu viele Bugs und ist laut meiner Info noch nicht fertig.
Code: Alles auswählen
## EasyMod compliant
##############################################################
## MOD Title: Chatspot Update (1.0 -> 1.0.1)
## MOD Author: Chatspot Development Team < kaniaz@gmail.com > (N/A) http://chatspot.sourceforge.net
## MOD Description: This will attempt to update Chatspot 1.0 installations to 1.0.1. The verison number is not changed.
## MOD Version: 1.0.1
##
## Installation Level: easy
## Installation Time: 2 Minutes
## Files To Edit: 2
## chatspot/message_interpreter.php
## chatspot/message_send.php
##
## Included Files: 0
##
##############################################################
## For Security Purposes, Please Check: http://www.phpbb.com/mods/ for the
## latest version of this MOD. Downloading this MOD from other sites could cause malicious code
## to enter into your phpBB Forum. As such, phpBB will not offer support for MOD's not offered
## in our MOD-Database, located at: http://www.phpbb.com/mods/
##############################################################
## Author Notes:
##
## This file will attempt to update 1.0.0 to 1.0.1. It is better to just do a 'clean install'
## of Chatspot, but if you have hacked your installation you could use this too.
##
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##############################################################
## MOD History:
##
## 30th July 2005
## - I screwed it up the first time. Fixed.
##
## 27th July 2005
## - First (and likely to be last) release
##
##############################################################
#
#-----[ OPEN ]--------------------------------------------------
#
chatspot/message_interpreter.php
#
#-----[ FIND ]----------------------------------------
#
if( !$skip_formatting )
#
#-----[ AFTER, ADD ]----------------------------------
#
//Stop the javascript exploit.
$colour=strip_tags($colour);
//Breaks html entites from being inserted.
$colour=htmlentities($colour);
#
#-----[ OPEN ]---------------------------------------------
#
chatspot/chatspot_functions.php
#
#-----[ FIND ]---------------------------------------------
#
function get_room_name( $room_id )
{
global $db, $table_chatspot_rooms_name;
#
#-----[ AFTER, ADD ]--------------------------------------
#
if (!is_numeric($room_id)) { die("Hacking attempt - room ID was not a number"); }
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM