www: 27d8185c: Use "long" php opening tags everywhere

nosnilmot at pidgin.im nosnilmot at pidgin.im
Mon Feb 21 21:25:51 EST 2011


----------------------------------------------------------------------
Revision: 27d8185c2e73a7bed19bb16c0ace3871e05c0741
Parent:   f0427b38bd914b046edf0f59ec8c162ac327fa09
Author:   nosnilmot at pidgin.im
Date:     02/21/11 21:19:55
Branch:   im.pidgin.www
URL: http://d.pidgin.im/viewmtn/revision/info/27d8185c2e73a7bed19bb16c0ace3871e05c0741

Changelog: 

Use "long" php opening tags everywhere

Changes against parent f0427b38bd914b046edf0f59ec8c162ac327fa09

  patched  htdocs/about/index.php
  patched  htdocs/download/centos_rhel/index.php
  patched  htdocs/download/fedora_core/index.php
  patched  htdocs/download/index.php
  patched  htdocs/download/mac/index.php
  patched  htdocs/download/source/index.php
  patched  htdocs/download/ubuntu/index.php
  patched  htdocs/download/windows/index.php
  patched  htdocs/home.php
  patched  htdocs/index.php
  patched  htdocs/news/blogs/index.php
  patched  htdocs/news/security/index.php
  patched  htdocs/security/index.php
  patched  htdocs/support/index.php
  patched  inc/blurb.download.inc
  patched  inc/blurb.download_new.inc
  patched  inc/blurb.downloaddetect.inc
  patched  inc/header.inc
  patched  inc/langdetect.inc
  patched  inc/section.download.inc
  patched  inc/section.inc
  patched  inc/section.news.inc

-------------- next part --------------
============================================================
--- htdocs/index.php	dc0b3b98417d0fc83acbf2082480a381601f346b
+++ htdocs/index.php	e460516c46e2ee6e773ad1ae6cec41c032eb4f4c
@@ -1,4 +1,4 @@
-<?
+<?php
   // Update these to match the current page.
   $page['title'] =   "Pidgin, the universal chat client";
   $page['section'] = "Home"; // Set to "home2" to enable website test
@@ -14,10 +14,10 @@
 <div id="left">
 
 <div id="version"><img src="/shared/img/logo.text-big.gif" alt="Pidgin" />
-<span class="number"><? echo $pidgin_version; ?></span>
+<span class="number"><?php echo $pidgin_version; ?></span>
 </div>
 
-<?
+<?php
 include($_SERVER['DOCUMENT_ROOT'] . "/../inc/blurb.download.inc");
 ?>
 
@@ -75,7 +75,7 @@ Pidgin 2.7.10 is out and contains a fix 
 Pidgin 2.7.10 is out and contains a fix for a minor libpurple security issue and a bunch of bugfixes. (Sorry, MSN users, none for you yet.)
 </p>
 
-<? /* Avoid outputting this stuff yet.
+<?php /* Avoid outputting this stuff yet.
 <!-- These are not ready to go yet -->
  <div class="box_full">
 
============================================================
--- inc/header.inc	91955d47d023446c1da634598053ff5601fc95cd
+++ inc/header.inc	2d0e5cc304cd2fdb53f12571b2ad9369c146d41b
@@ -1,4 +1,4 @@
-<?
+<?php
 
 if ($page == NULL || !is_array($page)) {
   $page = array();
@@ -34,14 +34,14 @@ $sections['Development']           = "ht
 		"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
 <head>
-  <title><? echo $page['title']; ?></title>
+  <title><?php echo $page['title']; ?></title>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta http-equiv="Content-language" content="en-US" />
   <meta name="copyright"   content="Pidgin Contributors" />
   <meta name="author"      content="Pidgin Contributors" />
   <meta name="designer"    content="Blend Interactive; http://blendinteractive.com" />
   <meta name="generator"   content="Kevin Stange ;)" />
-  <meta name="description" content="<? echo $page['description'] ?>" />
+  <meta name="description" content="<?php echo $page['description'] ?>" />
   <link rel="alternate" href="http://planet.pidgin.im/rss20.xml" type="application/rss+xml" title="Pidgin News" />
   <link rel="shortcut icon" href="/shared/img/favicon.png" type="image/png" />
   <link rel="stylesheet" href="/shared/css/main.css" type="text/css" />
@@ -84,7 +84,7 @@ d.write('<sc'+'ript src="'+
 </script><script>utmx("url",'A/B');</script>
 <!-- End Google Website Optimizer tracking code -->
 
-<? } ?>
+<?php } ?>
 
 
 
@@ -92,7 +92,7 @@ d.write('<sc'+'ript src="'+
 <div id="header">
 <a href="http://pidgin.im/"><img src="/shared/img/logo.text.jpg" alt="Pidgin" /></a>
 <ul>
-<?
+<?php
   foreach ($sections as $name => $link) {
     $escaped = htmlspecialchars ($name);
     if ($page['abslink'] && !preg_match("%^[a-z]+:%", $link)) {
============================================================
--- htdocs/about/index.php	d296a97e04a90e3f6cd0270ffb6245312f305439
+++ htdocs/about/index.php	8783b469002557ddabc27af738a1b6360ca1026e
@@ -1,4 +1,4 @@
-<?
+<?php
   // Update these to match the current page.
   $page['title'] =   "About Pidgin, the universal chat client";
   $page['section'] = "About";
@@ -17,7 +17,7 @@
 <h1>About Pidgin</h1>
 
 <div style="float:right;">
-<?
+<?php
 include($_SERVER['DOCUMENT_ROOT'] . "/../inc/blurb.download.inc");
 ?>
 <br/>
@@ -66,7 +66,7 @@ generous contributions of our volunteer 
 
 <?php if (strlen($language) > 0 && $language != "English") { ?>
   You may be glad to know that Pidgin is already translated into
-  <strong><? echo $language ?></strong>!
+  <strong><?php echo $language ?></strong>!
 <?php } ?>
 
 </p>
============================================================
--- htdocs/download/index.php	50fbb220fd776f6de944725dfe2d9e6376ca80f3
+++ htdocs/download/index.php	f15ec6ed7c23a0ced377572813d0ec87f959d1c7
@@ -1,4 +1,4 @@
-<?
+<?php
   // Update these to match the current page.
   $page['title'] =   "Download Pidgin, the universal chat client";
   $page['section'] = "Download";
@@ -11,7 +11,7 @@
 
 <div id="content">
 
-<? include($_SERVER['DOCUMENT_ROOT'] . "/../inc/section.download.inc"); ?>
+<?php include($_SERVER['DOCUMENT_ROOT'] . "/../inc/section.download.inc"); ?>
 
 <div class="box_right">
 <div id="main" style="position:relative;">
@@ -32,7 +32,7 @@
 </noscript>
 
 <div id="download_wrapper" style="display:none">
-<?
+<?php
 include($_SERVER['DOCUMENT_ROOT'] . "/../inc/blurb.download.inc");
 ?>
 </div>
============================================================
--- inc/section.download.inc	ac5b883bbc77cb30754c9eddcaa972fc40d4777b
+++ inc/section.download.inc	2d4d6cbeb6ce9b8d1e326d0156c3f37c8993aca9
@@ -1,4 +1,4 @@
-<?
+<?php
 
 // Define Sub Sections
 $sub_sections['Windows']       = "/download/windows/";
============================================================
--- inc/section.inc	0abba62e841f02416306bbccade01e63b21d9d65
+++ inc/section.inc	bb843f4019eb72a47117fa41c893fd21309b0f09
@@ -1,4 +1,4 @@
-<?
+<?php
 
 if ($sub_sections == NULL || !is_array($sub_sections)) {
   $sub_sections = array();
@@ -15,7 +15,7 @@ if (!array_key_exists('subsect', $page))
 ?>
 <div class="box_nav">
 <ul>
-<?
+<?php
   foreach ($sub_sections as $name => $link) {
     $escaped = htmlspecialchars ($name);
     if ($page['abslink'] && !preg_match("%^[a-z]+:%", $link)) {
============================================================
--- htdocs/download/centos_rhel/index.php	14584a276a0979b250839b83325ea9bc1974cfd5
+++ htdocs/download/centos_rhel/index.php	7d0ddea0884753d3c1d97da663fd337483bd2f1c
@@ -1,4 +1,4 @@
-<?
+<?php
   // Update these to match the current page.
   $page['title'] =   "Download Pidgin for CentOS / RHEL";
   $page['section'] = "Download";
@@ -11,12 +11,12 @@
 
 <div id="content">
 
-<? include($_SERVER['DOCUMENT_ROOT'] . "/../inc/section.download.inc"); ?>
+<?php include($_SERVER['DOCUMENT_ROOT'] . "/../inc/section.download.inc"); ?>
 
 <div class="box_right">
 <div id="main">
 
-<h1><? echo $page['subsect']; ?></h1>
+<h1><?php echo $page['subsect']; ?></h1>
 
 <div class="box_download">
 
@@ -25,7 +25,7 @@ onclick="javascript:pageTracker._trackPa
 >
 <img src="/shared/img/button.download.png" alt="[Down Arrow]" id="downbutton" />
 <span class="download_header">Download Pidgin</span><br />
-<span class="number"><? echo $pidgin_version; ?> for CentOS / RHEL</span>
+<span class="number"><?php echo $pidgin_version; ?> for CentOS / RHEL</span>
 </a></p>
 
 <p>To install Pidgin on CentOS 5 or RHEL 5, save the pidgin.repo file
============================================================
--- htdocs/download/fedora_core/index.php	672e8fbae773cce278149a2181a491f3cfdfd5a6
+++ htdocs/download/fedora_core/index.php	a1bcd60ca6480f693875f96624e1e6cc3a6839c2
@@ -1,4 +1,4 @@
-<?
+<?php
   // Update these to match the current page.
   $page['title'] =   "Download Pidgin for Fedora";
   $page['section'] = "Download";
@@ -11,12 +11,12 @@
 
 <div id="content">
 
-<? include($_SERVER['DOCUMENT_ROOT'] . "/../inc/section.download.inc"); ?>
+<?php include($_SERVER['DOCUMENT_ROOT'] . "/../inc/section.download.inc"); ?>
 
 <div class="box_right">
 <div id="main">
 
-<h1><? echo $page['subsect']; ?></h1>
+<h1><?php echo $page['subsect']; ?></h1>
 
 <div class="box_download">
 
@@ -25,7 +25,7 @@ onclick="javascript:pageTracker._trackPa
 >
 <img src="/shared/img/button.download.png" alt="[Down Arrow]" id="downbutton" />
 <span class="download_header">Download Pidgin</span><br />
-<span class="number"><? echo $pidgin_version; ?> for Fedora</span>
+<span class="number"><?php echo $pidgin_version; ?> for Fedora</span>
 </a></p>
 
 <p>To install Pidgin on Fedora 6 or 7 save the pidgin.repo file from
============================================================
--- htdocs/download/source/index.php	8549186ab759c3b8791950ffbe7137e108e1a4c0
+++ htdocs/download/source/index.php	20305819f1f5f0fe4c884c9ace4940517a2ac091
@@ -1,4 +1,4 @@
-<?
+<?php
   // Update these to match the current page.
   $page['title'] =   "Download Pidgin Source";
   $page['section'] = "Download";
@@ -11,21 +11,21 @@
 
 <div id="content">
 
-<? include($_SERVER['DOCUMENT_ROOT'] . "/../inc/section.download.inc"); ?>
+<?php include($_SERVER['DOCUMENT_ROOT'] . "/../inc/section.download.inc"); ?>
 
 <div class="box_right">
 <div id="main">
 
-<h1><? echo $page['subsect']; ?></h1>
+<h1><?php echo $page['subsect']; ?></h1>
 
 <div class="box_download">
 
-<p><a href="http://sourceforge.net/projects/pidgin/files/Pidgin/<? echo $pidgin_version; ?>/pidgin-<? echo $pidgin_version; ?>.tar.bz2"
+<p><a href="http://sourceforge.net/projects/pidgin/files/Pidgin/<?php echo $pidgin_version; ?>/pidgin-<?php echo $pidgin_version; ?>.tar.bz2"
 onclick="javascript:pageTracker._trackPageview('/goals/downloads/source');"
 >
 <img src="/shared/img/button.download.png" alt="[Down Arrow]" id="downbutton" />
 <span class="download_header">Download Pidgin</span><br />
-<span class="number"><? echo $pidgin_version; ?> Source</span>
+<span class="number"><?php echo $pidgin_version; ?> Source</span>
 </a></p>
 
 <p>This download is for the source code of Pidgin.</p>
============================================================
--- htdocs/download/windows/index.php	3e1bacea6aa78503979c43da3550245ad5fbbdcd
+++ htdocs/download/windows/index.php	3703d1718c4dce16292bf8b7e015ce19f2a0b889
@@ -1,4 +1,4 @@
-<?
+<?php
   // Update these to match the current page.
   $page['title'] =   "Download Pidgin for Windows";
   $page['section'] = "Download";
@@ -11,25 +11,25 @@
 
 <div id="content">
 
-<? include($_SERVER['DOCUMENT_ROOT'] . "/../inc/section.download.inc"); ?>
+<?php include($_SERVER['DOCUMENT_ROOT'] . "/../inc/section.download.inc"); ?>
 
 <div class="box_right">
 <div id="main">
 
-<h1><? echo $page['subsect']; ?></h1>
+<h1><?php echo $page['subsect']; ?></h1>
 
 <div class="box_download">
 
-<p><a href="http://sourceforge.net/projects/pidgin/files/Pidgin/<? echo $pidgin_win32_version; ?>/pidgin-<? echo $pidgin_win32_version; ?>.exe"
+<p><a href="http://sourceforge.net/projects/pidgin/files/Pidgin/<?php echo $pidgin_win32_version; ?>/pidgin-<?php echo $pidgin_win32_version; ?>.exe"
 onclick="javascript:pageTracker._trackPageview('/goals/downloads/win');"
 >
 <img src="/shared/img/button.download.png" alt="[Down Arrow]" id="downbutton" />
 <span class="download_header">Download Pidgin</span><br />
-<span class="number"><? echo $pidgin_win32_version; ?> for Windows</span>
+<span class="number"><?php echo $pidgin_win32_version; ?> for Windows</span>
 </a></p>
 
 <p>This version of Pidgin downloads an appropriate version of GTK+.  GTK+ is now installed locally for Pidgin, and not system-wide, thus Pidgin will not interfere with other GTK+ apps on your system.</p>
-<p>If you would like to have GTK+ included in the installer, we have an <a href="http://sourceforge.net/projects/pidgin/files/Pidgin/<? echo $pidgin_win32_version; ?>/pidgin-<? echo $pidgin_win32_version; ?>-offline.exe">offline installer</a> that bundles everything except spell-checking dictionaries. </p>
+<p>If you would like to have GTK+ included in the installer, we have an <a href="http://sourceforge.net/projects/pidgin/files/Pidgin/<?php echo $pidgin_win32_version; ?>/pidgin-<?php echo $pidgin_win32_version; ?>-offline.exe">offline installer</a> that bundles everything except spell-checking dictionaries. </p>
 
 </div>
 
============================================================
--- inc/section.news.inc	f045a3d23845eb363de715ca82ee6e10bf3f03c6
+++ inc/section.news.inc	99082daa50f06a432944a76234208396aac3e99a
@@ -1,4 +1,4 @@
-<?
+<?php
 
 // Define Sub Sections
 $sub_sections['Latest News']         = "http://planet.pidgin.im/";
============================================================
--- htdocs/news/security/index.php	b7b2ddde12a418589ffe4199651ac39862f24e15
+++ htdocs/news/security/index.php	e393098ec6cc97aae3a4ca214f3b8419d02f6d17
@@ -1,4 +1,4 @@
-<?
+<?php
   // Update these to match the current page.
   $page['title'] =   "Pidgin Security Advisories";
   $page['section'] = "News";
@@ -11,12 +11,12 @@
 
 <div id="content">
 
-<? include($_SERVER['DOCUMENT_ROOT'] . "/../inc/section.news.inc"); ?>
+<?php include($_SERVER['DOCUMENT_ROOT'] . "/../inc/section.news.inc"); ?>
 
 <div class="box_right">
 <div id="main">
 
-<?
+<?php
 
 $max_per_page = 50;
 
@@ -559,7 +559,7 @@ $vulnerabilities = array(
 
 ?>
 
-<?
+<?php
 if (array_key_exists('id', $_GET)) {
 	// Read in the ID of the vulnerability the user wants to view
 	$id = intval($_GET["id"]); 
@@ -584,7 +584,7 @@ August 1st, 2004 in Pidgin (or Gaim) and
     <th>Fixed In</th>
   </tr>
 
-<?
+<?php
 
 $offset = (array_key_exists('offset', $_GET) ? $_GET['offset'] : 0);
 
@@ -601,40 +601,40 @@ for ($i = $start; $i >= $stop; $i--) {
 	$vun =& $vulnerabilities[$i];
 ?>
   <tr>
-    <td><a href="?id=<?=$i?>"><?=$vun['title']?></a></td>
-<?
+    <td><a href="?id=<?php=$i?>"><?php=$vun['title']?></a></td>
+<?php
 	if (array_key_exists('cve', $vun)) {
     ?>
-    <td><a href="http://cve.mitre.org/cgi-bin/cvename.cgi?name=<?=$vun['cve']?>"><?=$vun['cve']?></a></td>
-<?
+    <td><a href="http://cve.mitre.org/cgi-bin/cvename.cgi?name=<?php=$vun['cve']?>"><?php=$vun['cve']?></a></td>
+<?php
 	} else {
     ?>
     <td>N/A</td>
-<?
+<?php
 	}
     ?>
-    <td class="date"><?=$vun['date']?></td>
-    <td><?=$vun['fixedversion']?></td>
+    <td class="date"><?php=$vun['date']?></td>
+    <td><?php=$vun['fixedversion']?></td>
   </tr>
-<?
+<?php
 }
 ?>
 </table>
 
-<?
+<?php
 if ($start < ($total - 1)) {
 ?>
-<a href="?offset=<?=($offset - $max_per_page) ?>">Newer</a>
-<?
+<a href="?offset=<?php=($offset - $max_per_page) ?>">Newer</a>
+<?php
 }
 if ($stop > 0) {
 ?>
-<a href="?offset=<?=($offset + $max_per_page) ?>">Older</a>
-<?
+<a href="?offset=<?php=($offset + $max_per_page) ?>">Older</a>
+<?php
 }
 ?>
 
-<?
+<?php
 
 } else {
 	// display the individual vulnerability
@@ -644,24 +644,24 @@ if ($stop > 0) {
 <h1>Pidgin Security Advisory</h1>
 
 <table>
-  <tr><th>Title</th><td><?=$vun['title']?></td></tr>
-  <tr><th>Date</th><td><?=$vun['date']?></td></tr>
-  <?
+  <tr><th>Title</th><td><?php=$vun['title']?></td></tr>
+  <tr><th>Date</th><td><?php=$vun['date']?></td></tr>
+  <?php
 	if (array_key_exists('cve', $vun) && !empty($vun['cve'])) {
   ?>
-  <tr><th>CVE Name</th><td><a href="http://cve.mitre.org/cgi-bin/cvename.cgi?name=<?=$vun['cve']?>"><?=$vun['cve']?></a></td></tr>
-  <?
+  <tr><th>CVE Name</th><td><a href="http://cve.mitre.org/cgi-bin/cvename.cgi?name=<?php=$vun['cve']?>"><?php=$vun['cve']?></a></td></tr>
+  <?php
 	} else {
   ?>
   <tr><th>CVE Name</th><td>N/A</td></tr>
-  <?
+  <?php
 	}
   ?>
-  <tr><th>Discovered By</th><td><?=$vun['discoveredby']?></td></tr>
-  <tr><th>Summary</th><td><?=$vun['summary']?></td></tr>
-  <tr><th>Description</th><td><?=$vun['description']?></td></tr>
+  <tr><th>Discovered By</th><td><?php=$vun['discoveredby']?></td></tr>
+  <tr><th>Summary</th><td><?php=$vun['summary']?></td></tr>
+  <tr><th>Description</th><td><?php=$vun['description']?></td></tr>
 
-  <?
+  <?php
 	if (array_key_exists('fixrevisions', $vun) && !empty($vun['fixrevisions'])) {
 		// fixrevisions is a comma delimited list of revisions.  Linkify each one individually.
 		$fixrevisions = '';
@@ -671,17 +671,17 @@ if ($stop > 0) {
 			$fixrevisions .= "<a href=\"http://developer.pidgin.im/viewmtn/revision/info/$revision\">$revision</a>";
 		}
   ?>
-  <tr><th>Fixed in Revision</th><td><?=$fixrevisions?></td></tr>
-  <?
+  <tr><th>Fixed in Revision</th><td><?php=$fixrevisions?></td></tr>
+  <?php
     }
   ?>
 
-  <tr><th>Fixed in Version</th><td><?=$vun['fixedversion']?></td></tr>
-  <tr><th>Fix</th><td><?=$vun['fix']?></td></tr>
+  <tr><th>Fixed in Version</th><td><?php=$vun['fixedversion']?></td></tr>
+  <tr><th>Fix</th><td><?php=$vun['fix']?></td></tr>
 </table>
 
 <p><a href="?offset=0">Return to Security Advisory Index</a></p>
-<?
+<?php
 }
 ?>
 
============================================================
--- inc/blurb.download.inc	3fab75985d1870dde7a53bc251f574a822a09014
+++ inc/blurb.download.inc	c535cb1be8c350d7e196a559d2a902577120a2f8
@@ -19,5 +19,5 @@ if (strlen($language) > 0 && $language !
 if (strlen($language) > 0 && $language != "English") {
 ?>
 <span class="number"><? echo $language ?></span>
-<? } ?>
+<?php } ?>
 </div>
============================================================
--- inc/blurb.download_new.inc	2241fc566d75f8f6668f1bb750b5cc7bd5d98899
+++ inc/blurb.download_new.inc	02a69bf461392199d9495096f90794755cdc711c
@@ -3,7 +3,7 @@ include($_SERVER['DOCUMENT_ROOT'] . "/..
 ?>
 
 <div class="prominent_box">
-<form method="get" action="<? echo $download_link; ?>">
+<form method="get" action="<?php echo $download_link; ?>">
 <div>
 <button type="submit" id="download_link" 
 <?php if (strlen($download_goal) > 0) { ?>
@@ -18,7 +18,7 @@ Download Pidgin
 <br />
 
 
-Version <? echo $pidgin_version; ?> <? echo $download_os; ?>
+Version <?php echo $pidgin_version; ?> <?php echo $download_os; ?>
 
 <br />
 
============================================================
--- inc/blurb.downloaddetect.inc	dba21e8169cfd9446c0351191c40711ef9d527e2
+++ inc/blurb.downloaddetect.inc	3464334181c9ed67f67b31bac96ce5660b768eff
@@ -1,4 +1,4 @@
-<?
+<?php
 
   // Figure out what browser we're working with
   $useragent = $_SERVER['HTTP_USER_AGENT'];
@@ -43,7 +43,7 @@ function ConversionCount()
 function ConversionCount()
 {
 //_uacct = 'UA-6596609-1';
-pageTracker._trackPageview('<? echo $download_goal; ?>');
+pageTracker._trackPageview('<?php echo $download_goal; ?>');
 if (typeof secondTracker != 'undefined') {
 secondTracker._trackPageview("/1527532502/goal");
 }
============================================================
--- htdocs/home.php	715ac61755af415dc3bde1c6e5080165d877c9c7
+++ htdocs/home.php	af090354f6f0a70e8e3e113bdefabc5b7f07b1cd
@@ -1,4 +1,4 @@
-<?
+<?php
   // This file exists to act as a second version of index.php for website experiment tests.
   // This needs to always exist, and either redirect to index.php or be the home of an experiment
 
@@ -29,7 +29,7 @@
 
 <div id="main_content">
 
-<?
+<?php
 include($_SERVER['DOCUMENT_ROOT'] . "/../inc/blurb.download_new.inc");
 ?>
 <br />
@@ -100,7 +100,7 @@ height="32"/></a>
 height="32"/></a>
 </p>
 
-<? } ?>
+<?php } ?>
 
 </div>
 </div>
@@ -129,7 +129,7 @@ height="32"/></a>
 */ ?>
 
 
-<? /* Avoid outputting this stuff yet.
+<?php /* Avoid outputting this stuff yet.
 <!-- These are not ready to go yet -->
  <div class="box_full">
 
============================================================
--- htdocs/support/index.php	f38a1b01d87dcdaa738425c0fe5c215381774873
+++ htdocs/support/index.php	a55f73534fdf6f385a8985d3a441b9494b0416e6
@@ -1,4 +1,4 @@
-<?
+<?php
   // Update these to match the current page.
   $page['title'] =   "Pidgin help and support";
   $page['section'] = "Help"; // Set to "home2" to enable website test
============================================================
--- inc/langdetect.inc	18f42c00853889dcb496e79e5ec0ab8e9e2ad9dc
+++ inc/langdetect.inc	751e32f65bcad5a57b1de4a7a54d60f66bffc064
@@ -1,4 +1,4 @@
-<?
+<?php
 
 // Language detection code
 
============================================================
--- htdocs/news/blogs/index.php	b61c5224e9d44aae65d4ca6aa577eb2ed7dbe3dd
+++ htdocs/news/blogs/index.php	304ac44fc0f6d7ff6672569d120194d9bb20390a
@@ -1,4 +1,4 @@
-<?
+<?php
   // Update these to match the current page.
   $page['title'] =   "Blogs | News";
   $page['section'] = "News";
@@ -9,7 +9,7 @@
 
 <div id="content">
 
-<? include($_SERVER['DOCUMENT_ROOT'] . "/../inc/section.news.inc"); ?>
+<?php include($_SERVER['DOCUMENT_ROOT'] . "/../inc/section.news.inc"); ?>
 
 <div class="box_right">
 <div id="main">
============================================================
--- htdocs/download/mac/index.php	c535ab0a7f4c0c9e7124714abf5643a0ee46a073
+++ htdocs/download/mac/index.php	6a334a4ff40d756cbe2de88b21682bc554bd8676
@@ -1,4 +1,4 @@
-<?
+<?php
   // Update these to match the current page.
   $page['title'] =   "Download Pidgin for Mac OS X";
   $page['section'] = "Download";
@@ -11,21 +11,21 @@
 
 <div id="content">
 
-<? include($_SERVER['DOCUMENT_ROOT'] . "/../inc/section.download.inc"); ?>
+<?php include($_SERVER['DOCUMENT_ROOT'] . "/../inc/section.download.inc"); ?>
 
 <div class="box_right">
 <div id="main">
 
-<h1><? echo $page['subsect']; ?></h1>
+<h1><?php echo $page['subsect']; ?></h1>
 
 <div class="box_download">
 
-<p><a href="http://sourceforge.net/projects/pidgin/files/Pidgin/<? echo $pidgin_version; ?>/pidgin-<? echo $pidgin_version; ?>.tar.bz2"
+<p><a href="http://sourceforge.net/projects/pidgin/files/Pidgin/<?php echo $pidgin_version; ?>/pidgin-<?php echo $pidgin_version; ?>.tar.bz2"
 onclick="javascript:pageTracker._trackPageview('/goals/downloads/source');"
 >
 <img src="/shared/img/button.download.png" alt="[Down Arrow]" id="downbutton" />
 <span class="download_header">Download Pidgin</span><br />
-<span class="number"><? echo $pidgin_version; ?> Source</span>
+<span class="number"><?php echo $pidgin_version; ?> Source</span>
 </a></p>
 
 <p>For a more native Mac OS X experience, you may be interested in using <a href="http://adium.im" onClick="javascript:pageTracker._trackPageview('/external/adium.im');">Adium</a> instead, which uses libpurple (the core of Pidgin) for much of its protocol support.</p>
============================================================
--- htdocs/download/ubuntu/index.php	9aa0822f550a17d26427128ebd64903d9033104c
+++ htdocs/download/ubuntu/index.php	b3bc51d409ec307c5353a8328a5eda26db73ddb7
@@ -1,4 +1,4 @@
-<?
+<?php
   // Update these to match the current page.
   $page['title'] =   "Download Pidgin for Ubuntu";
   $page['section'] = "Download";
@@ -11,12 +11,12 @@
 
 <div id="content">
 
-<? include($_SERVER['DOCUMENT_ROOT'] . "/../inc/section.download.inc"); ?>
+<?php include($_SERVER['DOCUMENT_ROOT'] . "/../inc/section.download.inc"); ?>
 
 <div class="box_right">
 <div id="main">
 
-<h1><? echo $page['subsect']; ?></h1>
+<h1><?php echo $page['subsect']; ?></h1>
 
 <div class="box_download">
 
============================================================
--- htdocs/security/index.php	43ba47b35280d4b994669e57ae5858ac2cdafaf3
+++ htdocs/security/index.php	ef44545d4da6362e7474dff1f066bd95bb0ce9c8
@@ -1,4 +1,4 @@
-<?
+<?php
   // Update these to match the current page.
   $page['title'] =   "Pidgin, libpurple, and finch security and vulnerabilities";
   $page['section'] = "Security";


More information about the Commits mailing list