1
0
mirror of https://github.com/monstra-cms/monstra.git synced 2025-07-31 02:10:37 +02:00

Sandbox Plugin: small fixes

This commit is contained in:
Awilum
2012-10-22 23:06:31 +03:00
parent 704721a96b
commit 1359f640d7

View File

@@ -83,10 +83,10 @@
echo (
Form::open().
Form::hidden('csrf', Security::token()).
Form::label('sandbox_form_template', __('Sandbox template')).
Form::label('sandbox_form_template', __('Sandbox template', 'sandbox')).
Form::select('sandbox_form_template', $templates, Option::get('sandbox_template')).
Html::br().
Form::submit('sandbox_component_save', __('Save'), array('class' => 'btn')).
Form::submit('sandbox_component_save', __('Save', 'sandbox'), array('class' => 'btn')).
Form::close()
);
}