Author |
Message |
neralex
Site Admin
![](modules/Forums/images/avatars/201442295664a46e4575d46.jpg)
Joined: Aug 22, 2007
Posts: 1775
|
Posted:
Sun Dec 22, 2019 3:55 am |
|
Doulos wrote: | Another one: Code:[21-Dec-2019 18:18:45 America/Chicago] PHP Warning: array_keys() expects parameter 1 to be array, string given in /home/meme/public_html/modules/Your_Account/public/new_confirm.php on line 159
| |
Thanks, try to replace this file. |
_________________ Only registered users can see links on this board! Get registered or login!
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
Doulos
Life Cycles Becoming CPU Cycles
![](modules/Forums/images/avatars/181553f049aa2a5924cda.jpg)
Joined: Jun 06, 2005
Posts: 732
|
Posted:
Sun Dec 22, 2019 5:01 pm |
|
I think that did it. Thanks. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
hicuxunicorniobestbuildpc
The Mouse Is Extension Of Arm
![](modules/Forums/images/avatars/5ed231554a8492e2e09da.gif)
Joined: Aug 13, 2009
Posts: 1123
|
Posted:
Sun Dec 22, 2019 5:57 pm |
|
Code: // strip out link code here (added back in later if saved)
$ShoutComment = $row['comment'];
$ShoutComment = preg_replace("[<a rel=\"nofollow\" target=\"_blank\" href=\"", "",$ShoutComment);
$ShoutComment = preg_replace("[<a rel=\"nofollow\" href=\"", "",$ShoutComment);
$ShoutComment = preg_replace("[<a target=\"_blank\" href=\"", "",$ShoutComment);
$ShoutComment = preg_replace("[<a href=\"", "",$ShoutComment);
$ShoutComment = preg_replace("\">URL</a>]", "",$ShoutComment);
$ShoutComment = preg_replace("\">FTP</a>]", "",$ShoutComment);
$ShoutComment = preg_replace("\">IRC</a>]", "",$ShoutComment);
$ShoutComment = preg_replace("\">TeamSpeak</a>]", "",$ShoutComment);
$ShoutComment = preg_replace("\">AIM</a>]", "",$ShoutComment);
$ShoutComment = preg_replace("\">Gopher</a>]", "",$ShoutComment);
$ShoutComment = preg_replace("\">E-Mail</a>]", "",$ShoutComment);
$i = 0;
$ShoutNew = '';
$ShoutArray = explode(" ",$ShoutComment);
foreach($ShoutArray as $ShoutPart) {
if (preg_replace("mailto:", $ShoutPart)) { // find mailto:
$ShoutPart = str_replace("mailto:", "",$ShoutPart); // strip out mailto:
$ShoutPart = str_replace("%", " ",$ShoutPart);
$ShoutPart = trim($ShoutPart);
// decode address to ascii
$c = 0;
$AddyArray = explode(" ",$ShoutPart);
foreach($AddyArray as $AddyPart) {
$AddyNew[$c] = chr(hexdec($AddyPart));
$c++;
}
$ShoutPart = implode("",$AddyNew);
$ShoutNew[$i] = "mailto:$ShoutPart"; // add mailto: back in
} else { $ShoutNew[$i] = $ShoutPart; }
$i++;
}
$ShoutComment = implode(" ",$ShoutNew);
|
Guys I am getting these errors I wasn't getting before because I thought I fixed them but they are coming back again.
Code:Warning: preg_replace(): No ending delimiter '&' found in /modules/Shout_Box/admin/index.php on line 501
Warning: preg_replace(): No ending delimiter '&' found in /modules/Shout_Box/admin/index.php on line 502
Warning: preg_replace(): No ending delimiter '&' found in /modules/Shout_Box/admin/index.php on line 503
Warning: preg_replace(): No ending delimiter '&' found in /modules/Shout_Box/admin/index.php on line 504
Warning: preg_replace(): No ending delimiter '"' found in /modules/Shout_Box/admin/index.php on line 505
Warning: preg_replace(): No ending delimiter '"' found in /modules/Shout_Box/admin/index.php on line 506
Warning: preg_replace(): No ending delimiter '"' found in /modules/Shout_Box/admin/index.php on line 507
Warning: preg_replace(): No ending delimiter '"' found in /modules/Shout_Box/admin/index.php on line 508
Warning: preg_replace(): No ending delimiter '"' found in /modules/Shout_Box/admin/index.php on line 509
Warning: preg_replace(): No ending delimiter '"' found in /modules/Shout_Box/admin/index.php on line 510
Warning: preg_replace(): No ending delimiter '"' found in /modules/Shout_Box/admin/index.php 511
Warning: preg_replace() expects at least 3 parameters, 2 given in /modules/Shout_Box/admin/index.php on line 517
Warning: Cannot assign an empty string to a string offset in /modules/Shout_Box/admin/index.php on line 530
Warning: implode(): Invalid arguments passed in /modules/Shout_Box/admin/index.php on line 533
|
|
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
neralex
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Sun Dec 22, 2019 6:31 pm |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
hicuxunicorniobestbuildpc
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Mon Dec 23, 2019 8:35 pm |
|
Well I did replace them and as a result I didn't get anymore error.
Code: // strip out link code here (added back in later if saved)
$ShoutComment = $row['comment'];
$ShoutComment = str_replace("[<a rel=\"nofollow\" target=\"_blank\" href=\"", "",$ShoutComment);
$ShoutComment = str_replace("[<a rel=\"nofollow\" href=\"", "",$ShoutComment);
$ShoutComment = str_replace("[<a target=\"_blank\" href=\"", "",$ShoutComment);
$ShoutComment = str_replace("[<a href=\"", "",$ShoutComment);
$ShoutComment = str_replace("\">URL</a>]", "",$ShoutComment);
$ShoutComment = str_replace("\">FTP</a>]", "",$ShoutComment);
$ShoutComment = str_replace("\">IRC</a>]", "",$ShoutComment);
$ShoutComment = str_replace("\">TeamSpeak</a>]", "",$ShoutComment);
$ShoutComment = str_replace("\">AIM</a>]", "",$ShoutComment);
$ShoutComment = str_replace("\">Gopher</a>]", "",$ShoutComment);
$ShoutComment = str_replace("\">E-Mail</a>]", "",$ShoutComment);
$i = 0;
$ShoutNew = '';
$ShoutArray = explode(" ",$ShoutComment);
foreach($ShoutArray as $ShoutPart) {
if (preg_replace("mailto:", $ShoutPart)) { // find mailto:
$ShoutPart = str_replace("~mailto~:", "",$ShoutPart); // strip out mailto:
$ShoutPart = str_replace("~%~", " ",$ShoutPart);
$ShoutPart = trim($ShoutPart);
// decode address to ascii
$c = 0;
$AddyArray = explode(" ",$ShoutPart);
foreach($AddyArray as $AddyPart) {
$AddyNew[$c] = chr(hexdec($AddyPart));
$c++;
}
$ShoutPart = implode("",$AddyNew);
$ShoutNew[$i] = "mailto:$ShoutPart"; // add mailto: back in
} else { $ShoutNew[$i] = $ShoutPart; }
$i++;
}
$ShoutComment = implode(" ",$ShoutNew);
|
|
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
Doulos
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Sat Dec 28, 2019 3:45 pm |
|
I was thinking about posting that I hadn't had any Warnings for a week then I saw this one:Code:PHP Notice: Undefined variable: perpage in /home/meme/public_html/admin/modules/nukesentinel/ABTrackedUsersPages.php on line 23
|
|
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
Doulos
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Mon Dec 30, 2019 8:56 pm |
|
I finally was able to track the following Warning:Code:[30-Dec-2019 14:10:10 America/Chicago] PHP Warning: preg_match(): Unknown modifier 't' in /home/clanfga/public_html/includes/nukesentinel.php on line 479
[30-Dec-2019 14:10:11 America/Chicago] PHP Warning: preg_match(): Unknown modifier 't' in /home/clanfga/public_html/includes/nukesentinel.php on line 479
[30-Dec-2019 14:10:11 America/Chicago] PHP Warning: preg_match(): Unknown modifier 't' in /home/clanfga/public_html/includes/nukesentinel.php on line 479
[30-Dec-2019 14:10:11 America/Chicago] PHP Warning: preg_match(): Unknown modifier 't' in /home/clanfga/public_html/includes/nukesentinel.php on line 479
[30-Dec-2019 14:10:11 America/Chicago] PHP Warning: preg_match(): Unknown modifier 't' in /home/clanfga/public_html/includes/nukesentinel.php on line 479
[30-Dec-2019 14:10:11 America/Chicago] PHP Warning: preg_match(): Unknown modifier 't' in /home/clanfga/public_html/includes/nukesentinel.php on line 479
[30-Dec-2019 14:10:15 America/Chicago] PHP Warning: preg_match(): Unknown modifier 't' in /home/clanfga/public_html/includes/nukesentinel.php on line 479
[30-Dec-2019 14:10:15 America/Chicago] PHP Warning: preg_match(): Unknown modifier 't' in /home/clanfga/public_html/includes/nukesentinel.php on line 479
[30-Dec-2019 14:10:15 America/Chicago] PHP Warning: preg_match(): Unknown modifier '.' in /home/clanfga/public_html/includes/nukesentinel.php on line 479
[30-Dec-2019 14:10:16 America/Chicago] PHP Warning: preg_match(): Unknown modifier '.' in /home/clanfga/public_html/includes/nukesentinel.php on line 479
[30-Dec-2019 14:10:16 America/Chicago] PHP Warning: preg_match(): Unknown modifier '.' in /home/clanfga/public_html/includes/nukesentinel.php on line 479
[30-Dec-2019 14:10:17 America/Chicago] PHP Warning: preg_match(): Unknown modifier '.' in /home/clanfga/public_html/includes/nukesentinel.php on line 479
[30-Dec-2019 14:10:17 America/Chicago] PHP Warning: preg_match(): Unknown modifier '.' in /home/clanfga/public_html/includes/nukesentinel.php on line 479
[30-Dec-2019 14:10:17 America/Chicago] PHP Warning: preg_match(): Unknown modifier '.' in /home/clanfga/public_html/includes/nukesentinel.php on line 479
[30-Dec-2019 14:10:17 America/Chicago] PHP Warning: preg_match(): Unknown modifier '.' in /home/clanfga/public_html/includes/nukesentinel.php on line 479
[30-Dec-2019 14:10:18 America/Chicago] PHP Warning: preg_match(): Unknown modifier '.' in /home/clanfga/public_html/includes/nukesentinel.php on line 479
[30-Dec-2019 14:10:18 America/Chicago] PHP Warning: preg_match(): Unknown modifier '.' in /home/clanfga/public_html/includes/nukesentinel.php on line 479
[30-Dec-2019 14:10:19 America/Chicago] PHP Warning: preg_match(): Unknown modifier '.' in /home/clanfga/public_html/includes/nukesentinel.php on line 479
[30-Dec-2019 14:10:22 America/Chicago] PHP Warning: preg_match(): Unknown modifier '.' in /home/clanfga/public_html/includes/nukesentinel.php on line 479
[30-Dec-2019 14:10:22 America/Chicago] PHP Warning: preg_match(): Unknown modifier '.' in /home/clanfga/public_html/includes/nukesentinel.php on line 479
[30-Dec-2019 14:10:23 America/Chicago] PHP Warning: preg_match(): Unknown modifier '.' in /home/clanfga/public_html/includes/nukesentinel.php on line 479
[30-Dec-2019 14:10:23 America/Chicago] PHP Warning: preg_match(): Unknown modifier '.' in /home/clanfga/public_html/includes/nukesentinel.php on line 479
[30-Dec-2019 14:10:23 America/Chicago] PHP Warning: preg_match(): Unknown modifier '.' in /home/clanfga/public_html/includes/nukesentinel.php on line 479
[30-Dec-2019 14:10:23 America/Chicago] PHP Warning: preg_match(): Unknown modifier '.' in /home/clanfga/public_html/includes/nukesentinel.php on line 479
[30-Dec-2019 14:10:23 America/Chicago] PHP Warning: preg_match(): Unknown modifier '.' in /home/clanfga/public_html/includes/nukesentinel.php on line 479
[30-Dec-2019 14:10:24 America/Chicago] PHP Warning: preg_match(): Unknown modifier '.' in /home/clanfga/public_html/includes/nukesentinel.php on line 479
[30-Dec-2019 14:10:24 America/Chicago] PHP Warning: preg_match(): Unknown modifier '.' in /home/clanfga/public_html/includes/nukesentinel.php on line 479
[30-Dec-2019 14:10:24 America/Chicago] PHP Warning: preg_match(): Unknown modifier '.' in /home/clanfga/public_html/includes/nukesentinel.php on line 479
[30-Dec-2019 14:10:24 America/Chicago] PHP Warning: preg_match(): Unknown modifier '.' in /home/clanfga/public_html/includes/nukesentinel.php on line 479
[30-Dec-2019 14:10:25 America/Chicago] PHP Warning: preg_match(): Unknown modifier '.' in /home/clanfga/public_html/includes/nukesentinel.php on line 479
[30-Dec-2019 14:10:25 America/Chicago] PHP Warning: preg_match(): Unknown modifier '.' in /home/clanfga/public_html/includes/nukesentinel.php on line 479
[30-Dec-2019 14:10:26 America/Chicago] PHP Warning: preg_match(): Unknown modifier '.' in /home/clanfga/public_html/includes/nukesentinel.php on line 479
[30-Dec-2019 14:10:26 America/Chicago] PHP Warning: preg_match(): Unknown modifier '.' in /home/clanfga/public_html/includes/nukesentinel.php on line 479
[30-Dec-2019 14:10:26 America/Chicago] PHP Warning: preg_match(): Unknown modifier '.' in /home/clanfga/public_html/includes/nukesentinel.php on line 479
[30-Dec-2019 14:10:27 America/Chicago] PHP Warning: preg_match(): Unknown modifier '.' in /home/clanfga/public_html/includes/nukesentinel.php on line 479
[30-Dec-2019 14:10:27 America/Chicago] PHP Warning: preg_match(): Unknown modifier '.' in /home/clanfga/public_html/includes/nukesentinel.php on line 479
[30-Dec-2019 14:10:27 America/Chicago] PHP Warning: preg_match(): Unknown modifier '.' in /home/clanfga/public_html/includes/nukesentinel.php on line 479
[30-Dec-2019 14:10:28 America/Chicago] PHP Warning: preg_match(): Unknown modifier '.' in /home/clanfga/public_html/includes/nukesentinel.php on line 479
[30-Dec-2019 14:10:28 America/Chicago] PHP Warning: preg_match(): Unknown modifier '.' in /home/clanfga/public_html/includes/nukesentinel.php on line 479
[30-Dec-2019 14:10:28 America/Chicago] PHP Warning: preg_match(): Unknown modifier '.' in /home/clanfga/public_html/includes/nukesentinel.php on line 479
|
To a NukeSentinel Abuse-Script attempt. This is the only thing I see that happened at 14:10. Here is the email I got:Code:Created By: NukeSentinel(tm) 2.6.03
Date & Time: 2019-12-30 14:10:28 CST GMT -0600
Blocked IP: 34.69.254.105
User ID: Anonymous (1)
Reason: Abuse-Script
--------------------
Referer: https://www.meme.com/modules.php?name="><script >alert(String.fromCharCode(88,83,83))</script>
User Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; Rv:50.0) Gecko/20100101 Firefox/50.0
HTTP Host: www.clanfga.com
Script Name: /modules.php
Query String: name="><script >alert(String.fromCharCode(88,83,83))</script>
Get String: &name="><script+>alert(String.fromCharCode(88,83,83))</script>
Post String: Not Available
Forwarded For: none
Client IP: none
Remote Address: 34.69.254.105
Remote Port: 53509
Request Method: GET
|
|
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
hicuxunicorniobestbuildpc
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Tue Jan 07, 2020 5:40 am |
|
strpos() or strstr() instead as they will be faster. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
neralex
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Tue Jan 07, 2020 1:28 pm |
|
hicuxunicorniobestbuildpc wrote: | strpos() or strstr() instead as they will be faster. |
Not sure what do you mean but your script is not a part of the RN core, so feel free to use what do you want. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
neralex
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Tue Jan 07, 2020 1:31 pm |
|
Doulos wrote: | I finally was able to track the following Warning:Code:
[30-Dec-2019 14:10:11 America/Chicago] PHP Warning: preg_match(): Unknown modifier 't' in /home/clanfga/public_html/includes/nukesentinel.php on line 479
[30-Dec-2019 14:10:15 America/Chicago] PHP Warning: preg_match(): Unknown modifier '.' in /home/clanfga/public_html/includes/nukesentinel.php on line 479
|
To a NukeSentinel Abuse-Script attempt. This is the only thing I see that happened at 14:10. Here is the email I got:Code:Created By: NukeSentinel(tm) 2.6.03
Date & Time: 2019-12-30 14:10:28 CST GMT -0600
Blocked IP: 34.69.254.105
User ID: Anonymous (1)
Reason: Abuse-Script
--------------------
Referer: https://www.meme.com/modules.php?name="><script >alert(String.fromCharCode(88,83,83))</script>
User Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; Rv:50.0) Gecko/20100101 Firefox/50.0
HTTP Host: www.clanfga.com
Script Name: /modules.php
Query String: name="><script >alert(String.fromCharCode(88,83,83))</script>
Get String: &name="><script+>alert(String.fromCharCode(88,83,83))</script>
Post String: Not Available
Forwarded For: none
Client IP: none
Remote Address: 34.69.254.105
Remote Port: 53509
Request Method: GET
| |
This can not be fixed at all because it is based on the incorrect input string. Something like this can not work and as long the sentinel has it blocked, then is all fine. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
Doulos
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Tue Jan 07, 2020 2:49 pm |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
Doulos
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Tue Jan 07, 2020 2:52 pm |
|
Doulos wrote: | I was thinking about posting that I hadn't had any Warnings for a week then I saw this one:Code:PHP Notice: Undefined variable: perpage in /home/meme/public_html/admin/modules/nukesentinel/ABTrackedUsersPages.php on line 23
| |
I fixed this on my local copy but did you do so on the git depository? Will my local Git Desktop copy be overwritten the next time I pull changes from your Git depository? |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
neralex
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Wed Jan 08, 2020 12:37 am |
|
Please post this single code-line here in this thread.
Maybe something like this:
php Code:if($perpage == '' || $perpage == 0) { $perpage = 25; }
|
|
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
Doulos
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Wed Jan 08, 2020 5:04 am |
|
By "I fixed this" I mean that I did something that was recommended by a google search of how to declare a variable, not that what I did was the correct thing to do. As I have said many times, I am a user not a programmer. I waited a few days to see if you would address it then tried Google. What I did stopped the warning. Is what you posted the appropriate way to resolve the issue?
All I did was add this above line 23
|
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
neralex
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Wed Jan 08, 2020 6:33 am |
|
I re-checked the functions and...
php Code://$perpage = $ab_config['track_perpage'];
if($perpage == 0) { $perpage = 25; }
|
The first line is commented out but this line is declaring the variable normally:
php Code:$perpage = $ab_config['track_perpage'];
|
There are two options in the sentinel administration, where you can set the number of IP's to list per page on the Tracked IP's pages and the number of IP's to list per page on the Blocked IP's pages.
Tracked IP's: $ab_config['track_perpage']
Blocked IP's: $ab_config['block_perpage']
But there is no option for the tracked users pages and also no related field in the database. I guess this was the reason why someone of the old DEV-team has commented out this line. So we have now two ways to solve it.
1. We are using the input-data from the Tracked IP's option and can control it with the sentinel-administration:
php Code:$perpage = $ab_config['track_perpage'];
if($perpage == 0) { $perpage = 25; }
|
2. Or we are defining the default-value for this variable hard-coded in the file:
php Code:if(!isset($perpage)) $perpage = 0;
if($perpage == 0) { $perpage = 25; }
|
What do you think? |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
Doulos
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Sun Jan 12, 2020 1:40 am |
|
I hope you weren't asking me what I think. I have no idea - I use you for ideas, and, thanks for that. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
neralex
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Mon Jan 13, 2020 11:39 am |
|
Yes, I was! ![Wink](modules/Forums/images/smiles/icon_wink.gif) |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
Doulos
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Wed Jan 15, 2020 4:26 am |
|
I hate to be a pest, but ...
Quote: | PHP Notice: Undefined offset: 1 in /home/clanfga/public_html/modules/Your_Account/index.php on line 261 |
|
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
neralex
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Wed Jan 15, 2020 1:23 pm |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
neralex
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Wed Jan 15, 2020 1:23 pm |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
Doulos
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Thu Jan 16, 2020 4:37 am |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
Doulos
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Sat Jan 18, 2020 11:13 pm |
|
I don't remember if I've seen this on here before, but my php7.3 site is adding two apostrophes instead of one apostrophe in the forum post title. The apostrophe shows up correctly in the body. The title shows up correctly in the preview but not when it is actually posted. This occurs on my vanilla test site and on my production site - and across several different stock themes (tested it on fisubice and ravenice). |
Description: |
|
Filesize: |
65.19 KB |
Viewed: |
8910 Time(s) |
![original-post.jpg](modules/Forums/files/original_post_148.jpg)
|
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
neralex
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Sun Jan 19, 2020 3:31 am |
|
Looks like a database collation mismatch. Which collation you are using? |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
Doulos
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Sat Jan 25, 2020 3:44 pm |
|
neralex wrote: | Looks like a database collation mismatch. Which collation you are using? |
latin1_swedish_ci
What should it be? |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
neralex
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Mon Jan 27, 2020 12:10 pm |
|
Doulos wrote: | latin1_swedish_ci
What should it be? |
This was already fixed few months ago but maybe I readded the issue while rewinding some other changes in the same file.
Let us try it together...
Open: modules/Forums/includes/functions_post.php and go to the lines 193/194 and comment out the both lines like this:
php Code://$post_subject = $db->sql_escape_string(htmlspecialchars_decode(check_html($post_subject, 'nohtml'), ENT_QUOTES));
//$poll_title = $db->sql_escape_string(htmlspecialchars_decode(check_html($poll_title, 'nohtml'), ENT_QUOTES));
|
Save the file and try to change the tiltle of the topic. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
|