Skip to content

Commit

Permalink
Fix assignment to wrong variable
Browse files Browse the repository at this point in the history
This caused the page to always display an empty list of tags. Follow up
fix on commit 0d9c5e7.

Fixes #16340
  • Loading branch information
dregad committed Sep 13, 2013
1 parent a721991 commit 68937db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manage_tags_page.php
Expand Up @@ -134,7 +134,7 @@

<?php
# Display all tags
while( $t_tag_row = db_fetch_array( $t_tags ) ) {
while( $t_tag_row = db_fetch_array( $t_result ) ) {
$t_tag_name = string_display_line( $t_tag_row['name'] );
$t_tag_description = string_display( $t_tag_row['description'] );
?>
Expand Down

0 comments on commit 68937db

Please sign in to comment.