Skip to content

Commit c71e4cb

Browse files
committed
Merge remote-tracking branch 'origin/fix/release-tagging' into bugfix/release-tagging
# Conflicts: # local/scripts/dist.sh
2 parents b8984c3 + bb48733 commit c71e4cb

17 files changed

+1349
-296
lines changed

classes/class-list-table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ public function extra_tablenav( $which ) {
9999
public function no_items() {
100100
?>
101101
<div class="stream-list-table-no-items">
102-
<p><?php esc_html_e( 'Sorry, no activity records were found.', 'stream' ); ?></p>
102+
<p><?php esc_html_e( 'No activity records were found.', 'stream' ); ?></p>
103103
</div>
104104
<?php
105105
}

classes/class-query.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,16 @@ public function query( $args ) {
216216

217217
$select = implode( ', ', $selects );
218218

219+
/**
220+
* Filters query WHERE statement as an alternative to filtering
221+
* the $query using the hook below.
222+
*
223+
* @param string $where WHERE statement.
224+
*
225+
* @return string
226+
*/
227+
$where = apply_filters( 'wp_stream_db_query_where', $where );
228+
219229
/**
220230
* BUILD THE FINAL QUERY
221231
*/

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
"wp-phpunit/wp-phpunit": "^5.4",
2424
"wpsh/local": "^0.2.3",
2525
"wpackagist-plugin/advanced-custom-fields": "5.8.12",
26-
"wpackagist-plugin/easy-digital-downloads": "^2.9.23"
26+
"wpackagist-plugin/easy-digital-downloads": "^2.9.23",
27+
"wpackagist-plugin/user-switching": "^1.5.5"
2728
},
2829
"config": {
2930
"process-timeout": 600,

0 commit comments

Comments
 (0)