includes/bbcode.php
  • FIND:

    				bbcode_array_push($stack, $match);
    
  • REPLACE WITH:

    				array_push($stack, $match);
    
  • FIND:

    						$match = bbcode_array_pop($stack);
    
  • REPLACE WITH:

    						$match = array_pop($stack);
    
  • FIND:

    							$match = bbcode_array_pop($stack);
    
  • REPLACE WITH:

    							$match = array_pop($stack);
    
  • FIND:

    /**
     * This function does exactly what the PHP4 function array_push() does
     * however, to keep phpBB compatable with PHP 3 we had to come up with our own
     * method of doing it.
     */
    
  • REPLACE WITH:

    /**
     * This function does exactly what the PHP4 function array_push() does
     * however, to keep phpBB compatable with PHP 3 we had to come up with our own
     * method of doing it.
     * This function was deprecated in phpBB 2.0.18
     */
    
  • FIND:

    /**
     * This function does exactly what the PHP4 function array_pop() does
     * however, to keep phpBB compatable with PHP 3 we had to come up with our own
     * method of doing it.
     */
    
  • REPLACE WITH:

    /**
     * This function does exactly what the PHP4 function array_pop() does
     * however, to keep phpBB compatable with PHP 3 we had to come up with our own
     * method of doing it.
     * This function was deprecated in phpBB 2.0.18
     */
    
  • FIND:

    			$orig[] = "/(?<=.\W|\W.|^\W)" . phpbb_preg_quote($smilies[$i]['code'], "/") . "(?=.\W|\W.|\W$)/";
    
  • REPLACE WITH:

    			$orig[] = "/(?<=.\W|\W.|^\W)" . preg_quote($smilies[$i]['code'], "/") . "(?=.\W|\W.|\W$)/";