Skip to:
Content

bbPress.org

Changeset 2194


Ignore:
Timestamp:
06/16/2009 04:29:53 AM (17 years ago)
Author:
sambauers
Message:

Add IE8 standards mode flags.

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/bb-admin/admin-header.php

    r2177 r2194  
    22<html xmlns="http://www.w3.org/1999/xhtml"<?php bb_language_attributes( '1.1' ); ?>>
    33<head>
     4        <meta http-equiv="X-UA-Compatible" content="IE=8" />
    45        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    56        <title><?php bb_admin_title() ?></title>
  • trunk/bb-templates/kakumei/footer.php

    r2177 r2194  
    11                </div>
    22        </div>
    3 
    43        <div id="footer" role="contentinfo">
    54                <p><?php printf(__('%1$s is proudly powered by <a href="%2$s">bbPress</a>.'), bb_option('name'), "http://bbpress.org") ?></p>
     
    1817        </div>
    1918
    20         <?php do_action('bb_foot'); ?>
     19<?php do_action('bb_foot'); ?>
    2120
    2221</body>
  • trunk/bb-templates/kakumei/header.php

    r2061 r2194  
     1<?php
     2$_head_profile_attr = '';
     3if ( bb_is_profile() ) {
     4        global $self;
     5        if ( !$self ) {
     6                $_head_profile_attr = ' profile="http://www.w3.org/2006/03/hcard"';
     7        }
     8}
     9?>
    110<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
    211<html xmlns="http://www.w3.org/1999/xhtml"<?php bb_language_attributes( '1.1' ); ?>>
    3 <?php if (bb_is_profile()) : global $self; ?>
    4 <?php if (!$self) : ?>
    5 <head profile="http://www.w3.org/2006/03/hcard">
    6 <?php else : ?>
    7 <head>
    8 <?php endif; ?>
    9 <?php else : ?>
    10 <head>
    11 <?php endif; ?>
     12<head<?php echo $_head_profile_attr; ?>>
     13        <meta http-equiv="X-UA-Compatible" content="IE=8" />
    1214        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    1315        <title><?php bb_title() ?></title>
    14         <?php bb_feed_head(); ?>
    1516        <link rel="stylesheet" href="<?php bb_stylesheet_uri(); ?>" type="text/css" />
    1617<?php if ( 'rtl' == bb_get_option( 'text_direction' ) ) : ?>
     
    1819<?php endif; ?>
    1920
     21<?php bb_feed_head(); ?>
     22
    2023<?php bb_head(); ?>
    2124
    2225</head>
    23 
    2426<body id="<?php bb_location(); ?>">
    2527        <div id="wrapper">
    26        
    2728                <div id="header" role="banner">
    2829                        <h1><a href="<?php bb_uri(); ?>"><?php bb_option('name'); ?></a></h1>
     
    3435                        </div>
    3536                </div>
     37                <div id="main">
    3638
    37        
    38                 <div id="main">
    3939<?php if ( bb_is_profile() ) profile_menu(); ?>
Note: See TracChangeset for help on using the changeset viewer.