~ubuntu-branches/debian/sid/wordpress/sid

« back to all changes in this revision

Viewing changes to wp-content/themes/twentyeleven/page.php

  • Committer: Package Import Robot
  • Author(s): Raphaël Hertzog
  • Date: 2013-09-04 23:18:58 UTC
  • mfrom: (1.2.28)
  • Revision ID: package-import@ubuntu.com-20130904231858-nljmn1buzswh63jk
Tags: 3.6+dfsg-1
* New upstream release.
* Improve wp-settings to verify that $_SERVER['HTTP_X_FORWARDED_PROTO']
  exists before accessing it (avoids a PHP notice).
  Thanks to Paul Dreik <slask@pauldreik.se> for the report and the patch.
* Document in README.Debian the need to login to /wp-admin/ to complete
  an upgrade.
* Drop useless debian/README.source
* Drop 008CVE2008-2392.patch since upstream now disables unfiltered
  uploads by default. See http://core.trac.wordpress.org/ticket/10692
* Drop 009CVE2008-6767.patch since the backto parameter is validated
  against a whitelist, and externally triggered upgrades are not a
  security problem as long as they work.
* Update debian/missing-sources with latest versions.
* Update upstream l10n.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?php
2
 
/**
3
 
 * The template for displaying all pages.
4
 
 *
5
 
 * This is the template that displays all pages by default.
6
 
 * Please note that this is the WordPress construct of pages
7
 
 * and that other 'pages' on your WordPress site will use a
8
 
 * different template.
9
 
 *
10
 
 * @package WordPress
11
 
 * @subpackage Twenty_Eleven
12
 
 * @since Twenty Eleven 1.0
13
 
 */
14
 
 
15
 
get_header(); ?>
16
 
 
17
 
                <div id="primary">
18
 
                        <div id="content" role="main">
19
 
 
20
 
                                <?php while ( have_posts() ) : the_post(); ?>
21
 
 
22
 
                                        <?php get_template_part( 'content', 'page' ); ?>
23
 
 
24
 
                                        <?php comments_template( '', true ); ?>
25
 
 
26
 
                                <?php endwhile; // end of the loop. ?>
27
 
 
28
 
                        </div><!-- #content -->
29
 
                </div><!-- #primary -->
30
 
 
31
 
<?php get_footer(); ?>
 
 
b'\\ No newline at end of file'