diff options
| author | fisharebest <fisharebest@gmail.com> | 2010-10-30 17:24:31 +0000 |
|---|---|---|
| committer | fisharebest <fisharebest@gmail.com> | 2010-10-30 17:24:31 +0000 |
| commit | fe8b71f311753b6bb7be62b697035e420fb5f056 (patch) | |
| tree | 829eccec88252804fd3ccd00fad780f551dfc919 /themes/colors | |
| parent | da9c61e696a7bcd63a4e6a7e792fbe3434618e18 (diff) | |
| download | webtrees-fe8b71f311753b6bb7be62b697035e420fb5f056.tar.gz webtrees-fe8b71f311753b6bb7be62b697035e420fb5f056.tar.bz2 webtrees-fe8b71f311753b6bb7be62b697035e420fb5f056.zip | |
Cosmetic change - consistent "; " before PHP close tag
Diffstat (limited to 'themes/colors')
| -rw-r--r-- | themes/colors/header.php | 6 | ||||
| -rw-r--r-- | themes/colors/templates/block_main_temp.php | 4 | ||||
| -rw-r--r-- | themes/colors/templates/block_small_temp.php | 4 |
3 files changed, 7 insertions, 7 deletions
diff --git a/themes/colors/header.php b/themes/colors/header.php index 31ec759535..e0a7658eff 100644 --- a/themes/colors/header.php +++ b/themes/colors/header.php @@ -79,12 +79,12 @@ echo '<link type="text/css" href="js/jquery/css/jquery-ui.custom.css" rel="Stylesheet" />'; ?> -<link type="text/css" href="<?php echo WT_THEME_DIR?>jquery/jquery-ui_theme.css" rel="Stylesheet" /> +<link type="text/css" href="<?php echo WT_THEME_DIR; ?>jquery/jquery-ui_theme.css" rel="Stylesheet" /> <link rel="stylesheet" href="<?php echo $print_stylesheet; ?>" type="text/css" media="print" /> <?php if ($TEXT_DIRECTION=='rtl') { ?> - <link type="text/css" href="<?php echo WT_THEME_DIR?>jquery/jquery-ui_theme_rtl.css" rel="Stylesheet" /> + <link type="text/css" href="<?php echo WT_THEME_DIR; ?>jquery/jquery-ui_theme_rtl.css" rel="Stylesheet" /> <?php } echo @@ -97,7 +97,7 @@ if ($BROWSERTYPE!='other') { ?> } -if ((!empty($rtl_stylesheet))&&($TEXT_DIRECTION=="rtl")) {?> +if ((!empty($rtl_stylesheet))&&($TEXT_DIRECTION=="rtl")) { ?> <link rel="stylesheet" href="<?php echo $rtl_stylesheet; ?>" type="text/css" media="all" /> <?php } echo '</head><body id="body" ', $bodyOnLoad, '>'; diff --git a/themes/colors/templates/block_main_temp.php b/themes/colors/templates/block_main_temp.php index 3284683fc4..c30c6e1f2d 100644 --- a/themes/colors/templates/block_main_temp.php +++ b/themes/colors/templates/block_main_temp.php @@ -43,12 +43,12 @@ if (!defined('WT_WEBTREES')) { <tr> <td class="blockh1" ></td> <td class="blockh2" > - <div class="blockhc"><b><?php echo $title ?></b></div> + <div class="blockhc"><b><?php echo $title; ?></b></div> </td> <td class="blockh3"></td> </tr> </table> <div class="blockcontent"> - <?php echo $content ?> + <?php echo $content; ?> </div> </div> diff --git a/themes/colors/templates/block_small_temp.php b/themes/colors/templates/block_small_temp.php index 1b1f122167..7a177238d2 100644 --- a/themes/colors/templates/block_small_temp.php +++ b/themes/colors/templates/block_small_temp.php @@ -43,14 +43,14 @@ if (!defined('WT_WEBTREES')) { <tr> <td class="blockh1" ></td> <td class="blockh2" > - <div class="blockhc"><b><?php echo $title ?></b></div> + <div class="blockhc"><b><?php echo $title; ?></b></div> </td> <td class="blockh3"></td> </tr> </table> <div class="blockcontent"> <div class="small_inner_block"> - <?php echo $content ?> + <?php echo $content; ?> </div> </div> </div> |
