Skip to content

Commit

Permalink
Refs #1030 .
Browse files Browse the repository at this point in the history
Can the WP team list be listed alphabetically? Would help enormously to quickly find a team member in big teams.
  • Loading branch information
rotexdegba committed Sep 26, 2017
1 parent eb3297e commit db5e6c0
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions public/index-dist.php
Original file line number Diff line number Diff line change
Expand Up @@ -143,12 +143,16 @@ function s3MVC_PrependAction2ActionMethodName($action_method_name) {
. " Please copy `$app_settings_dist_file_path_rel` to `$app_settings_file_path_rel` and"
. " configure `$app_settings_file_path_rel` for your application's current environment.";

error_log ( $log_message , 0 ); // message is sent to PHP's system logger,
// using the Operating System's system logging mechanism
// or a file, depending on what the error_log configuration
// directive is set to.
// error_log ( $log_message , 0 ) means message is sent to PHP's system logger,
// using the Operating System's system logging mechanism or a file, depending
// on what the error_log configuration directive is set to.
if( @error_log ( $log_message , 0 ) === false ) {

// last attempt to log
error_log ( $log_message , 4 ); // message is sent directly to the SAPI logging handler.
}

error_log ( $log_message , 4 ); // message is sent directly to the SAPI logging handler.

exit;
}

Expand Down

0 comments on commit db5e6c0

Please sign in to comment.