From: Evan Prodromou Date: Mon, 17 Jan 2011 23:04:10 +0000 (-0500) Subject: wrap account actions in a section X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=aa4a8e50511a61039fc158a6bc5fa0a853eb79c4;p=quix0rs-gnu-social.git wrap account actions in a section --- 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'); } }