-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Discuz! X3.4 Thai UTF-8 R20210917, Rev.68
- Add: addClass() removeClass() toggleClass() - Add: Language pack keys for PHP version is too low during installation - Add: New feature to detect the latest version during installation - Optimize: HTML5 media playback function module loading - Optimize: Improve the clarity of HTML5 avatar upload - Optimize: Search engine inclusion strategy - Optimize: Synchronize config_global_default.php with v3.5 branch modification to facilitate the merging between later branches - Optimize: Thread table optimization - Optimize: Waitid parameter in the original _ajaxpost was only passed in but not used in any way, which made the parameter meaningless and has been fixed. - Fix: Abnormal group sorting in MySQL 5.7 - Fix: Content re-review caused the website to run slowly - Fix: Database error report for GROUP BY clause - Fix: Error of adding single quotes to the $ symbol in the code tag - Fix: First page of the tag list shows all topics - Fix: Group related text is not displayed due to the redundant group opening entry - Fix: Missing code of !927 - Fix: No section partition in the left navigation of the post list - Fix: Pagination link behind the title of the forum thread list supports the "New Window" function - Fix: Ppicture that is not inserted into the sticker is displayed abnormally in the touch screen version - Fix: Problem that the ixigua.com video cannot be parsed and played normally on the mobile device - Fix: QQ guest user group name is empty after the QQ Internet plug-in is installed - Fix: Remove obsolete language keys - Fix: Remove redundant tags - Fix: Security issues that can be bypassed by the mail authentication entrance CSRF and time limit - Fix: Thread table bug - Fix: Waitid parameter of _ajaxpost() is invalid, and fix the problem of abnormal operation of ajaxpost with functions such as [voting][report] due to the last modification - Fix: When a reply is deleted, you can also like it - Fix: Wrong style of the QQ share button on the forum post content page
- Loading branch information
1 parent
f7296a7
commit 45e5ff1
Showing
38 changed files
with
297 additions
and
242 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,40 +0,0 @@ | ||
<?php | ||
|
||
/** | ||
* [Discuz!] (C)2001-2099 Comsenz Inc. | ||
* This is NOT a freeware, use is subject to license terms | ||
* | ||
* $Id: like.php 25510 2011-11-14 02:22:26Z yexinhao $ | ||
*/ | ||
|
||
define('IN_API', true); | ||
define('CURSCRIPT', 'api'); | ||
|
||
require_once '../../source/class/class_core.php'; | ||
|
||
$cachelist = array(); | ||
$discuz = C::app(); | ||
$discuz->init_setting = true; | ||
$discuz->init(); | ||
|
||
$body = ''; | ||
$style = 'body { background: transparent; color: '.$_G['style']['tabletext'].'; font: '.$_G['style']['fontsize'].' '.$_G['style']['font'].'; margin:0; }'. | ||
'a { color: '.$_G['style']['link'].'; text-decoration: none; } a:hover { text-decoration: underline; }'; | ||
|
||
if($_G['setting']['connect']['like_allow'] && $_G['setting']['connect']['like_url']) { | ||
$style .= '#txQZ { border: medium none; float: left; height:21px; margin-top: 4px; overflow: hidden; width: 110px; }'. | ||
'.vm { vertical-align: middle; }'; | ||
$body .= '<iframe id="txQZ" src="'.$_G['setting']['connect']['like_url'].'" class="vm" allowtransparency="true" scrolling="no" border="0" frameborder="0"></iframe>'; | ||
} | ||
|
||
if($_G['setting']['connect']['turl_allow'] && $_G['setting']['connect']['turl_code']) { | ||
$style .= '#txWB_W1 { background: url("../../static/image/common/weibo.png") no-repeat scroll 0 50% transparent; float: left; line-height: 28px; padding: 0 5px 0 20px; }'. | ||
'#txWB_W1 img { display: none; }'. | ||
'#txWB_W1 b { font-weight: 400; }'. | ||
'#txWB_W1 a { color: '.$_G['style']['highlightlink'].'; }'; | ||
$body .= $_G['setting']['connect']['turl_code']; | ||
} | ||
|
||
if($style && $body) { | ||
echo '<style>'.$style.'</style><body>'.$body.'</body>'; | ||
} | ||
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
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.