View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0000340 | XMB1 | Bugs | public | 2010-01-23 22:33 | 2010-02-24 17:57 |
| Reporter | miqrogroove | Assigned To | miqrogroove | ||
| Priority | normal | Severity | minor | Reproducibility | have not tried |
| Status | closed | Resolution | fixed | ||
| Product Version | 1.9.11 | ||||
| Target Version | 1.9.11.08 | Fixed in Version | 1.9.11.08 | ||
| Summary | 0000340: Type-o Affecting Smiley Disable Option | ||||
| Description | This ticket covers the previously undocumented patch in revision 2102. An equal sign was missing in two places, causing an unintended literal assignment. This issue does not require a critical patch and should be considered resolved now. | ||||
| Tags | No tags attached. | ||||
| MySQL Version | |||||
| PHP Version | |||||
| Web Server | |||||
| Browser | |||||
| Flags | |||||
| Original Reporter | |||||
| SVN Revision | 2102 | ||||
| Git Commit | |||||
|
2010-01-23 22:54
|
Test.d.svn003.tmp.diff (1,335 bytes)
Index: post.php
===================================================================
--- post.php (revision 2101)
+++ post.php (revision 2102)
@@ -290,7 +290,7 @@
$bBBcodeOnForThisPost = ($forum['allowbbcode'] == 'yes' And $bbcodeoff == 'no');
$bIMGcodeOnForThisPost = ($bBBcodeOnForThisPost And $forum['allowimgcode'] == 'yes');
$bSmilieInserterEnabled = ($SETTINGS['smileyinsert'] == 'on' And $forum['allowsmilies'] == 'yes');
-$bSmiliesOnForThisPost = ($forum['allowsmilies'] == 'yes' And $smileyoff = 'no');
+$bSmiliesOnForThisPost = ($forum['allowsmilies'] == 'yes' And $smileyoff == 'no');
if (isset($subaction) && $subaction == 'spellcheck' && (isset($spellchecksubmit) || isset($updates_submit))) {
$sc = TRUE;
@@ -1267,7 +1267,7 @@
$postinfo['subject'] = stripslashes($postinfo['subject']);
$bBBcodeOnForThisPost = ($forum['allowbbcode'] == 'yes' And $postinfo['bbcodeoff'] == 'no');
$bIMGcodeOnForThisPost = ($bBBcodeOnForThisPost And $forum['allowimgcode'] == 'yes');
- $bSmiliesOnForThisPost = ($forum['allowsmilies'] == 'yes' And $postinfo['smileyoff'] = 'no');
+ $bSmiliesOnForThisPost = ($forum['allowsmilies'] == 'yes' And $postinfo['smileyoff'] == 'no');
}
// Fill $attachment
|
| Date Modified | Username | Field | Change |
|---|---|---|---|
| 2010-01-23 22:33 | miqrogroove | New Issue | |
| 2010-01-23 22:34 | miqrogroove | SVN Revision | => 2102 |
| 2010-01-23 22:34 | miqrogroove | Status | new => resolved |
| 2010-01-23 22:34 | miqrogroove | Fixed in Version | => 1.9.11.07 |
| 2010-01-23 22:34 | miqrogroove | Resolution | open => fixed |
| 2010-01-23 22:34 | miqrogroove | Assigned To | => miqrogroove |
| 2010-01-23 22:54 | miqrogroove | File Added: Test.d.svn003.tmp.diff | |
| 2010-01-24 00:11 | miqrogroove | Fixed in Version | 1.9.11.07 => 1.9.11.08 |
| 2010-01-24 00:11 | miqrogroove | Target Version | 1.9.11.07 => 1.9.11.08 |
| 2010-02-24 17:57 | miqrogroove | Status | resolved => closed |