From aa4a8e50511a61039fc158a6bc5fa0a853eb79c4 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 17 Jan 2011 18:04:10 -0500 Subject: [PATCH] wrap account actions in a section --- actions/profilesettings.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/actions/profilesettings.php b/actions/profilesettings.php index 19fbdbd293..303bb0ad9b 100644 --- a/actions/profilesettings.php +++ b/actions/profilesettings.php @@ -458,6 +458,9 @@ class ProfilesettingsAction extends AccountSettingsAction $this->elementStart('div', array('id' => 'aside_primary', 'class' => 'aside')); + + $this->elementStart('div', array('id' => 'account_actions', + 'class' => 'section')); $this->elementStart('ul'); if (Event::handle('StartProfileSettingsActions', array($this))) { if ($user->hasRight(Right::BACKUPACCOUNT)) { @@ -485,5 +488,6 @@ class ProfilesettingsAction extends AccountSettingsAction } $this->elementEnd('ul'); $this->elementEnd('div'); + $this->elementEnd('div'); } } -- 2.39.2