Added extended timeout to all API requests

Bumped version
Fixed spelling errors
This commit is contained in:
Justin Foell
2018-03-29 10:44:58 -05:00
parent 5797d2b639
commit 71060c35b0
4 changed files with 13 additions and 11 deletions
+2 -2
View File
@@ -91,7 +91,7 @@ class WPStrava_LatestMapWidget extends WP_Widget {
if ( is_wp_error( $activities ) ) {
echo $args['before_widget'];
if ( $title ) {
echo $args['$before_title'] . $title . $args['$after_title'];
echo $args['before_title'] . $title . $args['after_title'];
}
if ( WPSTRAVA_DEBUG ) {
@@ -101,7 +101,7 @@ class WPStrava_LatestMapWidget extends WP_Widget {
} else {
echo $activities->get_error_message();
}
echo $args['$after_widget'];
echo $args['after_widget'];
return;
}