Skip to content

Commit

Permalink
Follow-up to commit a4eec2: missed adding the 'WHERE' clause appropri…
Browse files Browse the repository at this point in the history
…ately.
  • Loading branch information
amyreese committed May 1, 2009
1 parent a4eec2f commit 02353e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manage_tags_page.php
Expand Up @@ -85,7 +85,7 @@
$t_where = '';
} else {
$t_where_params[] = db_prepare_string( $f_filter . '%' );
$t_where = db_helper_like( 'name' );
$t_where = 'WHERE ' . db_helper_like( 'name' );
}

# Set the number of Tags per page.
Expand Down

0 comments on commit 02353e8

Please sign in to comment.