summaryrefslogtreecommitdiff
path: root/actions
diff options
context:
space:
mode:
authorSarven Capadisli <csarven@controlyourself.ca>2009-06-15 21:02:12 +0000
committerSarven Capadisli <csarven@controlyourself.ca>2009-06-15 21:02:12 +0000
commit2f693c4c9453fc61bea960ba8767fdf68e5130cd (patch)
tree75b6f507989a4b1434012bf6d750a91dc9d0a11d /actions
parent807d84d448fb453de777d7a1ef938150bb03de3e (diff)
Updated swatch numbering
Diffstat (limited to 'actions')
-rw-r--r--actions/designsettings.php21
1 files changed, 10 insertions, 11 deletions
diff --git a/actions/designsettings.php b/actions/designsettings.php
index dba983fdf..46a5843f8 100644
--- a/actions/designsettings.php
+++ b/actions/designsettings.php
@@ -106,10 +106,10 @@ class DesignsettingsAction extends AccountSettingsAction
}
$this->elementStart('li');
- $this->element('label', array('for' => 'swatch-0'), _('Background'));
+ $this->element('label', array('for' => 'swatch-1'), _('Background'));
$this->element('input', array('name' => 'design_background',
'type' => 'text',
- 'id' => 'swatch-0',
+ 'id' => 'swatch-1',
'class' => 'swatch',
'maxlength' => '7',
'size' => '7',
@@ -117,10 +117,10 @@ class DesignsettingsAction extends AccountSettingsAction
$this->elementEnd('li');
$this->elementStart('li');
- $this->element('label', array('for' => 'swatch-1'), _('Content'));
+ $this->element('label', array('for' => 'swatch-2'), _('Content'));
$this->element('input', array('name' => 'design_content',
'type' => 'text',
- 'id' => 'swatch-1',
+ 'id' => 'swatch-2',
'class' => 'swatch',
'maxlength' => '7',
'size' => '7',
@@ -128,10 +128,10 @@ class DesignsettingsAction extends AccountSettingsAction
$this->elementEnd('li');
$this->elementStart('li');
- $this->element('label', array('for' => 'swatch-2'), _('Sidebar'));
+ $this->element('label', array('for' => 'swatch-3'), _('Sidebar'));
$this->element('input', array('name' => 'design_sidebar',
'type' => 'text',
- 'id' => 'swatch-2',
+ 'id' => 'swatch-3',
'class' => 'swatch',
'maxlength' => '7',
'size' => '7',
@@ -139,10 +139,10 @@ class DesignsettingsAction extends AccountSettingsAction
$this->elementEnd('li');
$this->elementStart('li');
- $this->element('label', array('for' => 'swatch-3'), _('Text'));
+ $this->element('label', array('for' => 'swatch-4'), _('Text'));
$this->element('input', array('name' => 'design_text',
'type' => 'text',
- 'id' => 'swatch-3',
+ 'id' => 'swatch-4',
'class' => 'swatch',
'maxlength' => '7',
'size' => '7',
@@ -150,15 +150,14 @@ class DesignsettingsAction extends AccountSettingsAction
$this->elementEnd('li');
$this->elementStart('li');
- $this->element('label', array('for' => 'swatch-4'), _('Links'));
+ $this->element('label', array('for' => 'swatch-5'), _('Links'));
$this->element('input', array('name' => 'design_links',
'type' => 'text',
- 'id' => 'swatch-4',
+ 'id' => 'swatch-5',
'class' => 'swatch',
'maxlength' => '7',
'size' => '7',
'value' => $design->linkcolor));
-
$this->elementEnd('li');
$this->elementEnd('ul');