From 283ca65789e604979f450625ac109ed926eef12c Mon Sep 17 00:00:00 2001 From: Awilum Date: Thu, 25 Oct 2012 18:50:06 +0300 Subject: [PATCH] SystemPlugin: fix index view --- plugins/box/system/views/backend/index.view.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/box/system/views/backend/index.view.php b/plugins/box/system/views/backend/index.view.php index 77eab12..7208b43 100755 --- a/plugins/box/system/views/backend/index.view.php +++ b/plugins/box/system/views/backend/index.view.php @@ -24,7 +24,7 @@ Form::label('site_name', __('Site name', 'system')). Form::input('site_name', Option::get('sitename'), array('class' => 'span7')). Html::br(). Form::label('site_description', __('Site description', 'system')). - Form::textarea('site_description', Option::get('description', array('class' => 'span7')). Html::br(). + Form::textarea('site_description', Option::get('description'), array('class' => 'span7')). Html::br(). Form::label('site_keywords', __('Site keywords', 'system')). Form::input('site_keywords', Option::get('keywords'), array('class' => 'span7')). Html::br(). Form::label('site_slogan', __('Site slogan', 'system')).