From: Zach Copley Date: Wed, 24 Jun 2009 07:43:48 +0000 (-0700) Subject: Only show "tile background" setting once an img has been uploaded X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=d72a90161b1cb748b58454e4c885b1d789ef3eca;p=quix0rs-gnu-social.git Only show "tile background" setting once an img has been uploaded --- diff --git a/lib/designsettings.php b/lib/designsettings.php index 6aa6bb2f19..9650679ac5 100644 --- a/lib/designsettings.php +++ b/lib/designsettings.php @@ -132,13 +132,13 @@ class DesignSettingsAction extends AccountSettingsAction _('Off')); $this->element('p', 'form_guide', _('Turn background image on or off.')); $this->elementEnd('li'); - } - $this->elementStart('li'); - $this->checkbox('design_background-image_repeat', - _('Tile background image'), - ($design->disposition & BACKGROUND_TILE) ? true : false ); - $this->elementEnd('li'); + $this->elementStart('li'); + $this->checkbox('design_background-image_repeat', + _('Tile background image'), + ($design->disposition & BACKGROUND_TILE) ? true : false ); + $this->elementEnd('li'); + } $this->elementEnd('ul'); $this->elementEnd('fieldset'); @@ -388,7 +388,11 @@ class DesignSettingsAction extends AccountSettingsAction $original = clone($design); $design->backgroundimage = $filename; + + // default to on, no tile + $design->setDisposition(true, false, false); + $result = $design->update($original); if ($result === false) {