Merge lp:~quam-plures-core/quam-plures/author_url_fix into lp:quam-plures

Proposed by Lee Turner
Status: Merged
Merged at revision: 7565
Proposed branch: lp:~quam-plures-core/quam-plures/author_url_fix
Merge into: lp:quam-plures
Diff against target: 12 lines (+1/-1)
1 file modified
qp_inc/plugins/plugins.ctrl.php (+1/-1)
To merge this branch: bzr merge lp:~quam-plures-core/quam-plures/author_url_fix
Reviewer Review Type Date Requested Status
Yabs (community) Approve
Review via email: mp+38823@code.launchpad.net

Description of the change

URL on plugin info page not linking properly due to extra quote (").

http://forums.quamplures.net/viewtopic.php?f=16&t=600

To post a comment you must log in.
Revision history for this message
Yabs (yabs) wrote :

Another easy diff

¥

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'qp_inc/plugins/plugins.ctrl.php'
2--- qp_inc/plugins/plugins.ctrl.php 2010-08-26 18:17:02 +0000
3+++ qp_inc/plugins/plugins.ctrl.php 2010-10-19 11:39:46 +0000
4@@ -974,7 +974,7 @@
5 $Form->info_field( T_('Author'), $edit_Plugin->author );
6 if( $edit_Plugin->author_url != '' )
7 {
8- $Form->info_field( T_('Author URL'), '<a href=""'.$edit_Plugin->author_url.'">'.$edit_Plugin->author_url.'</a>' );
9+ $Form->info_field( T_('Author URL'), '<a href="'.$edit_Plugin->author_url.'">'.$edit_Plugin->author_url.'</a>' );
10 }
11 $Form->info_field( T_('Code'),
12 ( empty($edit_Plugin->code) ? ' - ' : $edit_Plugin->code ),

Subscribers

People subscribed via source and target branches