
On 05/15/2014 04:39 AM, CrÃstian Viana wrote:
There is an HTML attribute value on the page "Edit repository" which is not surrounded properly by quotes; there is only the opening quote, not the closing one. That is wrong HTML syntax.
Fix the code by adding the missing closing quote.
Signed-off-by: CrÃstian Viana <vianac@linux.vnet.ibm.com> Reviewed-by: Hongliang Wang <hlwang@linux.vnet.ibm.com> --- ui/pages/repository-edit.html.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ui/pages/repository-edit.html.tmpl b/ui/pages/repository-edit.html.tmpl index cad95e8..fbef4f3 100644 --- a/ui/pages/repository-edit.html.tmpl +++ b/ui/pages/repository-edit.html.tmpl @@ -103,7 +103,7 @@ </div> <footer> <div class="btn-group"> - <button type="submit id="repository-edit-button-save" class="btn-normal"> + <button type="submit" id="repository-edit-button-save" class="btn-normal"> <span class="text">$_("Save")</span> </button> </div>