1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-30 10:42:41 +01:00

Merge pull request #166 from CodeBlock/master

D3079
This commit is contained in:
Evan Priestley 2012-07-26 13:35:12 -07:00
commit dcc28a28ec

View file

@ -33,7 +33,7 @@ final class AphrontFormImageControl extends AphrontFormControl {
'name' => $this->getName(), 'name' => $this->getName(),
'class' => 'image', 'class' => 'image',
)). )).
'<span>-or-</span>'. '<div style="clear: both;">'.
phutil_render_tag( phutil_render_tag(
'input', 'input',
array( array(
@ -47,7 +47,8 @@ final class AphrontFormImageControl extends AphrontFormControl {
array( array(
'for' => $id, 'for' => $id,
), ),
'Use Default Image'); 'Use Default Image instead').
'</div>';
} }
} }