forked from newz/2thchat
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- แสดงข้อความแจ้งเตือน เวลาเน็ตหลุด - แสดงแจ้งเตือนเมื่อมี แจ้งเตือน/ข้อความส่วนตัว ใหม่ ตรงรายชื่อออนไลน์ - แก้ไขปัญหาเรื่องการแก้ไขข้อความ ให้แสดงผลอย่างถูกต้อง - แก้ไขปัญหาเรื่องการแบน และทำให้สามารถกำหนดระยะเวลาแบนได้ - แก้ไขปัญหาไม่สามารถใช้บางคำสั่งกับคนที่มีชื่อ ' ได้ - แก้ไข จำนวนข้อความที่จะแสดงเริ่มต้น ให้แสดงผลอย่างถูกต้อง - แก้ไขข้อความ กระซิบถึง: แสดงเวลามีข้อความกระซิบเข้ามาเวลาส่งข้อความพอดี - รองรับ Discuz! X3.5 - เอาระบบให้คะแนนออกไป
- Loading branch information
Showing
19 changed files
with
224 additions
and
266 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,3 @@ | ||
2TH Chat | ||
======= | ||
Chatbox for Discuz X/X2/X3 | ||
|
||
## Changelog | ||
### 1.12 | ||
- Fixed unable to send certain characters | ||
- Fixed PHP open tag, now no longer require to enable short_open_tag | ||
- Updated meta data and credit | ||
Chatbox for Discuz! X |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
2TH Chat DIY addon |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?php | ||
|
||
if(!defined('IN_DISCUZ')) { | ||
exit('Access Denied'); | ||
} | ||
|
||
require_once libfile('commonblock_html', 'class/block/html'); | ||
|
||
class block_thchat extends commonblock_html { | ||
|
||
function name() { | ||
return '2th Chat'; | ||
} | ||
|
||
function block_forumtree() {} | ||
function getsetting() {} | ||
|
||
function getdata($style, $parameter) { | ||
global $_G; | ||
include DISCUZ_ROOT. './source/plugin/th_chat/include.php'; | ||
include template('th_chat:discuz'); | ||
return array('html' => $return, 'data' => null); | ||
} | ||
} | ||
|
||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.