Index: trunk/extensions/LiquidThreads/classes/Hooks.php |
— | — | @@ -720,10 +720,11 @@ |
721 | 721 | $res = $dbr->select( 'thread_pending_relationship', '*', array(1), __METHOD__ ); |
722 | 722 | |
723 | 723 | foreach( $res as $row ) { |
| 724 | + $title = $row->tpr_title; |
724 | 725 | $entry = array( |
725 | 726 | 'thread' => $row->tpr_thread, |
726 | 727 | 'relationship' => $row->tpr_relationship, |
727 | | - 'title' => $row->tpr_title, |
| 728 | + 'title' => $title, |
728 | 729 | 'type' => $row->tpr_type, |
729 | 730 | ); |
730 | 731 | |