Merge lp:~whosdaz/ubuntu-qa-website/fix1534561 into lp:ubuntu-qa-website

Proposed by Matthew Allen
Status: Merged
Merged at revision: 421
Proposed branch: lp:~whosdaz/ubuntu-qa-website/fix1534561
Merge into: lp:ubuntu-qa-website
Diff against target: 22 lines (+6/-0)
1 file modified
modules/qatracker/user/qatracker.user.results.php (+6/-0)
To merge this branch: bzr merge lp:~whosdaz/ubuntu-qa-website/fix1534561
Reviewer Review Type Date Requested Status
Ubuntu QA Website Developers Pending
Review via email: mp+282724@code.launchpad.net
To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'modules/qatracker/user/qatracker.user.results.php'
2--- modules/qatracker/user/qatracker.user.results.php 2016-01-12 19:44:35 +0000
3+++ modules/qatracker/user/qatracker.user.results.php 2016-01-15 11:55:01 +0000
4@@ -588,6 +588,9 @@
5 '#type' => 'textfield',
6 '#title' => t('Critical bugs'),
7 '#description' => t('Comma separated list of bug numbers preventing you from passing the testcase'),
8+ '#attributes' => array( // Set up an array of attributes inside the tag
9+ 'style' => 'width:90%',
10+ ),
11 '#default_value' => implode(", ", $user_result->critical_bugs),
12 );
13
14@@ -595,6 +598,9 @@
15 '#type' => 'textfield',
16 '#title' => t('Bugs'),
17 '#description' => t('Comma separated list of bug numbers discovered while going through the testcase'),
18+ '#attributes' => array( // Set up an array of attributes inside the tag
19+ 'style' => 'width:90%',
20+ ),
21 '#default_value' => implode(", ", $user_result->regular_bugs),
22 );
23

Subscribers

People subscribed via source and target branches