Skip to content

Commit

Permalink
! $tag should be $possible
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuaadickerson authored and Spuds committed Sep 5, 2015
1 parent a394196 commit 8fe7846
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sources/Subs.php
Expand Up @@ -1746,8 +1746,8 @@ function parse_bbc($message, $smileys = true, $cache_id = '', $parse_tags = arra
{
if (!isset($possible['disallow_before'], $possible['disallow_after']))
continue;
$possible['before'] = isset($possible['disallow_before']) ? $tag['disallow_before'] : $possible['before'];
$possible['after'] = isset($possible['disallow_after']) ? $tag['disallow_after'] : $possible['after'];
$possible['before'] = isset($possible['disallow_before']) ? $possible['disallow_before'] : $possible['before'];
$possible['after'] = isset($possible['disallow_after']) ? $possible['disallow_after'] : $possible['after'];
}

$pos1 = $pos + 1 + $pt_strlen + 1;
Expand Down

0 comments on commit 8fe7846

Please sign in to comment.