diff options
| author | fisharebest <fisharebest@gmail.com> | 2010-07-17 08:38:18 +0000 |
|---|---|---|
| committer | fisharebest <fisharebest@gmail.com> | 2010-07-17 08:38:18 +0000 |
| commit | 6c8fe253b24c89f098742b12775c1cd524ac5482 (patch) | |
| tree | 1788c99a90fa3502aec0712d44d2d4c28f37e303 /themes/clouds/header.php | |
| parent | 22d91a49657fbb1940274ae882f900736b9df866 (diff) | |
| download | webtrees-6c8fe253b24c89f098742b12775c1cd524ac5482.tar.gz webtrees-6c8fe253b24c89f098742b12775c1cd524ac5482.tar.bz2 webtrees-6c8fe253b24c89f098742b12775c1cd524ac5482.zip | |
Combine WT_THEME_DIR with WT_IMAGES. This reduces repetition, and will allow themes to share common images, e.g. in the images directory.
Diffstat (limited to 'themes/clouds/header.php')
| -rw-r--r-- | themes/clouds/header.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/themes/clouds/header.php b/themes/clouds/header.php index 10443a74f7..1ab7e4d55e 100644 --- a/themes/clouds/header.php +++ b/themes/clouds/header.php @@ -109,7 +109,7 @@ flush(); // Allow the browser to start fetching external stylesheets, javascript echo '<div id="rapcontainer">', '<div id="header" class="', $TEXT_DIRECTION, '">'; ?> -<table class="header" style="background:url('<?php echo $WT_IMAGE_DIR; ?>/clouds.gif')" > +<table class="header" style="background:url('<?php echo WT_THEME_DIR; ?>images/clouds.gif')" > <?php echo '<tr>', '<td align="', $TEXT_DIRECTION=="ltr"?"left":"right", '" valign="middle" >', @@ -130,7 +130,7 @@ if(empty($SEARCH_SPIDER)) { '<input type="hidden" name="action" value="general" />', '<input type="hidden" name="topsearch" value="yes" />', '<input type="text" class="formbut" name="query" size="15" value="', i18n::translate('Search'), '" onfocus="if (this.value==\'', i18n::translate('Search'), '\') this.value=\'\'; focusHandler();" onblur="if (this.value==\'\') this.value=\'', i18n::translate('Search'), '\';" />', - '<input type="image" src="', $WT_IMAGE_DIR, '/go.gif', '" align="top" alt="', i18n::translate('Search'), '" title="', i18n::translate('Search'), '" />', + '<input type="image" src="', WT_THEME_DIR, 'images/go.gif', '" align="top" alt="', i18n::translate('Search'), '" title="', i18n::translate('Search'), '" />', '</form>', '</div>'; } |
