Skip to:
Content

bbPress.org


Ignore:
Timestamp:
12/15/2016 11:20:53 AM (7 years ago)
Author:
xknown
Message:

branch 0.9: Silence signature mismatch notices.

In PHP 7.0, they are reported as warnings http://php.net/manual/fr/migration70.incompatible.php#migration70.incompatible.error-handling.strict

See #3033

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/0.9/bb-includes/classes.php

    r6157 r6171  
    10401040
    10411041    //abstract callbacks
    1042     function start_lvl($output) { return $output; }
    1043     function end_lvl($output)   { return $output; }
     1042    function start_lvl($output, $depth) { return $output; }
     1043    function end_lvl($output, $depth)   { return $output; }
    10441044    function start_el($output)  { return $output; }
    10451045    function end_el($output)    { return $output; }
     
    11781178    }
    11791179
    1180     function start_el()  { return ''; }
    1181     function end_el()    { return ''; }
     1180    function start_el( $output )  { return ''; }
     1181    function end_el( $output )    { return ''; }
    11821182}
    11831183
Note: See TracChangeset for help on using the changeset viewer.