BreezingFormsWidget.php on line 4
1 <?php
2 // no translations yet, let’s do it quick and dirty for now
3 $breezingforms_widget_description = ‘Display a BreezingForms form’;
4 if( WPLANG == ‘de-DE’ ){
5 $breezingforms_widget_description = ‘Zeige ein BreezingForms Formular’;
6 }
————————————————–
pluggable.php on line 1296
1294 $x_redirect_by = apply_filters( ‘x_redirect_by’, $x_redirect_by, $status, $location );
1295 if ( is_string( $x_redirect_by ) ) {
1296 header( “X-Redirect-By: $x_redirect_by” );
1297 }
————————————————–
class-wp-hook.php on line 287
284 if ( 0 == $the_[‘accepted_args’] ) {
285 $value = call_user_func( $the_[‘function’] );
286 } elseif ( $the_[‘accepted_args’] >= $num_args ) {
287 $value = call_user_func_array( $the_[‘function’], $args );
288 } else {
289 $value = call_user_func_array( $the_[‘function’], array_slice( $args, 0, (int) $the_[‘accepted_args’] ) );
290 }