Changeset 1556
- Timestamp:
- 05/08/2015 07:07:58 PM (10 years ago)
- Location:
- sites/trunk/wordpress.tv/public_html/wp-content/themes/wptv2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.tv/public_html/wp-content/themes/wptv2/functions.php
r1390 r1556 269 269 270 270 foreach ( (array) $query->query_vars['search_terms'] as $term ) { 271 $term = esc_sql( like_escape( $term ) );271 $term = esc_sql( $wpdb->esc_like( $term ) ); 272 272 $search .= "{$searchand}(($wpdb->posts.post_title LIKE '{$n}{$term}{$n}') OR ($wpdb->posts.post_content LIKE '{$n}{$term}{$n}'))"; 273 273 $searchand = ' AND '; -
sites/trunk/wordpress.tv/public_html/wp-content/themes/wptv2/plugins/wordpresstv-upload-subtitles/wordpresstv-upload-subtitles.php
r1024 r1556 30 30 */ 31 31 function handle_upload() { 32 // allow only videomimes32 // allow only subtitle mimes 33 33 $overrides = array( 34 34 'test_form' => false,
Note: See TracChangeset
for help on using the changeset viewer.