diff -Nru drupal5-5.15/CHANGELOG.txt drupal5-5.17/CHANGELOG.txt --- drupal5-5.15/CHANGELOG.txt 2009-01-14 23:32:14.000000000 +0000 +++ drupal5-5.17/CHANGELOG.txt 2009-04-30 01:13:48.000000000 +0100 @@ -1,4 +1,15 @@ -// $Id: CHANGELOG.txt,v 1.173.2.35 2009/01/14 23:32:14 drumm Exp $ +// $Id: CHANGELOG.txt,v 1.173.2.39 2009/04/30 00:13:48 drumm Exp $ + +Drupal 5.17, 2009-04-29 +----------------------- +- Fixed security issues (Cross site scripting and limited information + disclosure) see SA-CORE-2009-005. +- Fixed a variety of small bugs. + +Drupal 5.16, 2009-02-25 +----------------------- +- Fixed a security issue, (Local file inclusion on Windows), see SA-CORE-2009-004. +- Fixed a variety of small bugs. Drupal 5.15, 2009-01-14 ----------------------- @@ -8,7 +19,6 @@ scripts. - Fixed a variety of small bugs. - Drupal 5.14, 2008-12-11 ----------------------- - removed a previous change incompatible with PHP 5.1.x and lower. diff -Nru /tmp/UbRhTEuk2W/drupal5-5.15/debian/changelog /tmp/LfgDx2HjQz/drupal5-5.17/debian/changelog --- drupal5-5.15/debian/changelog 2009-05-12 15:48:12.000000000 +0100 +++ drupal5-5.17/debian/changelog 2009-05-12 15:48:12.000000000 +0100 @@ -1,3 +1,34 @@ +drupal5 (5.17-1ubuntu1) karmic; urgency=low + + * Merge from debian unstable, remaining changes: + + debian/patches/02_htaccess: + - Add RewriteBase /drupal5 + + debian/control: + - Replace exim4 with postfix in Depends. + - Add Homepage field. + + Fix for debian/watch. + - Bump version from 2 to 3 + + -- Bhavani Shankar Tue, 12 May 2009 20:09:23 +0530 + +drupal5 (5.17-1) unstable; urgency=low + + [ Luigi Gangitano ] + * New upstream release + - Fixes XSS vulnerability (Ref: SA-CORE-2009-005, CVE-TBD) + + -- Luigi Gangitano Mon, 04 May 2009 15:03:32 +0200 + +drupal5 (5.16-1) unstable; urgency=low + + [ Luigi Gangitano ] + * New upstream release + + * debian/control + - Added missing Homepage field (Closes: #512002) + + -- Luigi Gangitano Sun, 01 Mar 2009 18:25:39 +0100 + drupal5 (5.15-1ubuntu1) jaunty; urgency=low * Merge from debian unstable, remaining changes: LP: #317774 diff -Nru /tmp/UbRhTEuk2W/drupal5-5.15/.htaccess /tmp/LfgDx2HjQz/drupal5-5.17/.htaccess --- drupal5-5.15/.htaccess 2008-12-10 20:12:26.000000000 +0000 +++ drupal5-5.17/.htaccess 2009-02-26 07:03:29.000000000 +0000 @@ -13,9 +13,14 @@ # Follow symbolic links in this directory. Options +FollowSymLinks -# Customized error messages. +# Make Drupal handle any 404 errors. ErrorDocument 404 /index.php +# Force simple error message for requests for non-existent favicon.ico. + + ErrorDocument 404 "The requested file favicon.ico was not found. + + # Set the default handler. DirectoryIndex index.php @@ -104,10 +109,11 @@ #RewriteCond %{QUERY_STRING} ^mod=([^&]+)$ #RewriteRule module.php index.php?q=%1 [L] - # Rewrite current-style URLs of the form 'index.php?q=x'. + # Rewrite current-style URLs of the form 'x' to the form 'index.php?q=x'. RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d + RewriteCond %{REQUEST_URI} !=/favicon.ico RewriteRule ^(.*)$ index.php?q=$1 [L,QSA] -# $Id: .htaccess,v 1.81.2.5 2008/12/10 20:12:26 drumm Exp $ +# $Id: .htaccess,v 1.81.2.6 2009/02/26 07:03:29 drumm Exp $ diff -Nru /tmp/UbRhTEuk2W/drupal5-5.15/includes/bootstrap.inc /tmp/LfgDx2HjQz/drupal5-5.17/includes/bootstrap.inc --- drupal5-5.15/includes/bootstrap.inc 2009-01-14 19:12:27.000000000 +0000 +++ drupal5-5.17/includes/bootstrap.inc 2009-04-30 01:13:48.000000000 +0100 @@ -1,5 +1,5 @@ ]*>/i', "\$0\n", $content, 1); +} + +/** * Add a feed URL for the current page. * * @param $url @@ -888,7 +897,7 @@ * * This function should only be used on actual URLs. It should not be used for * Drupal menu paths, which can contain arbitrary characters. - * + * Valid values per RFC 3986. * @param $url * The URL to verify. * @param $absolute @@ -897,12 +906,26 @@ * TRUE if the URL is in a valid format. */ function valid_url($url, $absolute = FALSE) { - $allowed_characters = '[a-z0-9\/:_\-_\.\?\$,;~=#&%\+]'; if ($absolute) { - return preg_match("/^(http|https|ftp):\/\/". $allowed_characters ."+$/i", $url); + return (bool)preg_match(" + /^ # Start at the beginning of the text + (?:ftp|https?):\/\/ # Look for ftp, http, or https schemes + (?: # Userinfo (optional) which is typically + (?:(?:[\w\.\-\+!$&'\(\)*\+,;=]|%[0-9a-f]{2})+:)* # a username or a username and password + (?:[\w\.\-\+%!$&'\(\)*\+,;=]|%[0-9a-f]{2})+@ # combination + )? + (?: + (?:[a-z0-9\-\.]|%[0-9a-f]{2})+ # A domain name or a IPv4 address + |(?:\[(?:[0-9a-f]{0,4}:)*(?:[0-9a-f]{0,4})\]) # or a well formed IPv6 address + ) + (?::[0-9]+)? # Server port number (optional) + (?:[\/|\?] + (?:[\w#!:\.\?\+=&@$'~*,;\/\(\)\[\]\-]|%[0-9a-f]{2}) # The path and query (optional) + *)? + $/xi", $url); } else { - return preg_match("/^". $allowed_characters ."+$/i", $url); + return (bool)preg_match("/^(?:[\w#!:\.\?\+=&@$'~*,;\/\(\)\[\]\-]|%[0-9a-f]{2})+$/i", $url); } } diff -Nru /tmp/UbRhTEuk2W/drupal5-5.15/includes/file.inc /tmp/LfgDx2HjQz/drupal5-5.17/includes/file.inc --- drupal5-5.15/includes/file.inc 2008-09-15 07:23:52.000000000 +0100 +++ drupal5-5.17/includes/file.inc 2009-01-26 14:22:45.000000000 +0000 @@ -1,5 +1,5 @@ 0) { foreach ($element['#options'] as $key => $choice) { if (!isset($element[$key])) { - $element[$key] = array('#type' => 'radio', '#title' => $choice, '#return_value' => check_plain($key), '#default_value' => $element['#default_value'], '#attributes' => $element['#attributes'], '#parents' => $element['#parents'], '#spawned' => TRUE); + // Generate the parents as the autogenerator does, so we will have a + // unique id for each radio button. + $parents_for_id = array_merge($element['#parents'], array($key)); + $element[$key] = array( + '#type' => 'radio', + '#title' => $choice, + '#return_value' => check_plain($key), + '#default_value' => $element['#default_value'], + '#attributes' => $element['#attributes'], + '#id' => form_clean_id('edit-'. implode('-', $parents_for_id)), + '#parents' => $element['#parents'], + '#spawned' => TRUE + ); } } } diff -Nru /tmp/UbRhTEuk2W/drupal5-5.15/includes/theme.inc /tmp/LfgDx2HjQz/drupal5-5.17/includes/theme.inc --- drupal5-5.15/includes/theme.inc 2008-12-05 22:32:50.000000000 +0000 +++ drupal5-5.17/includes/theme.inc 2009-04-30 01:13:48.000000000 +0100 @@ -1,5 +1,5 @@ ignored ignored processed" - $chunks = preg_split('@(]*>)@i', $text, -1, PREG_SPLIT_DELIM_CAPTURE); + $chunks = preg_split('@(]*>)@i', $text, -1, PREG_SPLIT_DELIM_CAPTURE); // Note: PHP ensures the array consists of alternating delimiters and literals // and begins and ends with a literal (inserting NULL as required). $ignore = FALSE; diff -Nru /tmp/UbRhTEuk2W/drupal5-5.15/modules/forum/forum.info /tmp/LfgDx2HjQz/drupal5-5.17/modules/forum/forum.info --- drupal5-5.15/modules/forum/forum.info 2009-01-14 23:40:15.000000000 +0000 +++ drupal5-5.17/modules/forum/forum.info 2009-04-30 01:20:30.000000000 +0100 @@ -5,8 +5,8 @@ package = Core - optional version = VERSION -; Information added by drupal.org packaging script on 2009-01-14 -version = "5.15" +; Information added by drupal.org packaging script on 2009-04-30 +version = "5.17" project = "drupal" -datestamp = "1231976415" +datestamp = "1241050830" diff -Nru /tmp/UbRhTEuk2W/drupal5-5.15/modules/forum/forum.module /tmp/LfgDx2HjQz/drupal5-5.17/modules/forum/forum.module --- drupal5-5.15/modules/forum/forum.module 2008-04-05 03:18:59.000000000 +0100 +++ drupal5-5.17/modules/forum/forum.module 2009-04-29 19:53:38.000000000 +0100 @@ -1,5 +1,5 @@ 'select', '#title' => $title, '#default_value' => $parent, '#options' => $options, '#description' => $description, '#required' => TRUE); } -function forum_link_alter(&$node, &$links) { - foreach ($links as $module => $link) { - if (strstr($module, 'taxonomy_term')) { - // Link back to the forum and not the taxonomy term page. We'll only - // do this if the taxonomy term in question belongs to forums. - $tid = str_replace('taxonomy/term/', '', $link['href']); - $term = taxonomy_get_term($tid); - if ($term->vid == _forum_get_vid()) { - $links[$module]['href'] = str_replace('taxonomy/term', 'forum', $link['href']); - } - } - } +function forum_term_path($term) { + return 'forum/'. $term->tid; } /** diff -Nru /tmp/UbRhTEuk2W/drupal5-5.15/modules/help/help.info /tmp/LfgDx2HjQz/drupal5-5.17/modules/help/help.info --- drupal5-5.15/modules/help/help.info 2009-01-14 23:40:15.000000000 +0000 +++ drupal5-5.17/modules/help/help.info 2009-04-30 01:20:30.000000000 +0100 @@ -4,8 +4,8 @@ package = Core - optional version = VERSION -; Information added by drupal.org packaging script on 2009-01-14 -version = "5.15" +; Information added by drupal.org packaging script on 2009-04-30 +version = "5.17" project = "drupal" -datestamp = "1231976415" +datestamp = "1241050830" diff -Nru /tmp/UbRhTEuk2W/drupal5-5.15/modules/legacy/legacy.info /tmp/LfgDx2HjQz/drupal5-5.17/modules/legacy/legacy.info --- drupal5-5.15/modules/legacy/legacy.info 2009-01-14 23:40:15.000000000 +0000 +++ drupal5-5.17/modules/legacy/legacy.info 2009-04-30 01:20:30.000000000 +0100 @@ -4,8 +4,8 @@ package = Core - optional version = VERSION -; Information added by drupal.org packaging script on 2009-01-14 -version = "5.15" +; Information added by drupal.org packaging script on 2009-04-30 +version = "5.17" project = "drupal" -datestamp = "1231976415" +datestamp = "1241050830" diff -Nru /tmp/UbRhTEuk2W/drupal5-5.15/modules/locale/locale.info /tmp/LfgDx2HjQz/drupal5-5.17/modules/locale/locale.info --- drupal5-5.15/modules/locale/locale.info 2009-01-14 23:40:15.000000000 +0000 +++ drupal5-5.17/modules/locale/locale.info 2009-04-30 01:20:30.000000000 +0100 @@ -4,8 +4,8 @@ package = Core - optional version = VERSION -; Information added by drupal.org packaging script on 2009-01-14 -version = "5.15" +; Information added by drupal.org packaging script on 2009-04-30 +version = "5.17" project = "drupal" -datestamp = "1231976415" +datestamp = "1241050830" diff -Nru /tmp/UbRhTEuk2W/drupal5-5.15/modules/menu/menu.info /tmp/LfgDx2HjQz/drupal5-5.17/modules/menu/menu.info --- drupal5-5.15/modules/menu/menu.info 2009-01-14 23:40:15.000000000 +0000 +++ drupal5-5.17/modules/menu/menu.info 2009-04-30 01:20:30.000000000 +0100 @@ -4,8 +4,8 @@ package = Core - optional version = VERSION -; Information added by drupal.org packaging script on 2009-01-14 -version = "5.15" +; Information added by drupal.org packaging script on 2009-04-30 +version = "5.17" project = "drupal" -datestamp = "1231976415" +datestamp = "1241050830" diff -Nru /tmp/UbRhTEuk2W/drupal5-5.15/modules/menu/menu.module /tmp/LfgDx2HjQz/drupal5-5.17/modules/menu/menu.module --- drupal5-5.15/modules/menu/menu.module 2008-11-15 02:47:59.000000000 +0000 +++ drupal5-5.17/modules/menu/menu.module 2009-02-26 06:56:26.000000000 +0000 @@ -1,5 +1,5 @@ 0) { - $item = db_fetch_array(db_query("SELECT * FROM {menu} WHERE path = 'node/%d'", $form['nid']['#value'])); + $item = db_fetch_array(db_query("SELECT * FROM {menu} WHERE path = 'node/%d' ORDER BY mid", $form['nid']['#value'])); if (isset($form['#post']['menu']) && is_array($form['#post']['menu'])) { $item = !is_array($item) ? $form['#post']['menu'] : (($form['#post']['op'] == t('Preview')) ? array_merge($item, $form['#post']['menu']) : array_merge($form['#post']['menu'], $item)); } diff -Nru /tmp/UbRhTEuk2W/drupal5-5.15/modules/node/node.info /tmp/LfgDx2HjQz/drupal5-5.17/modules/node/node.info --- drupal5-5.15/modules/node/node.info 2009-01-14 23:40:15.000000000 +0000 +++ drupal5-5.17/modules/node/node.info 2009-04-30 01:20:30.000000000 +0100 @@ -4,8 +4,8 @@ package = Core - required version = VERSION -; Information added by drupal.org packaging script on 2009-01-14 -version = "5.15" +; Information added by drupal.org packaging script on 2009-04-30 +version = "5.17" project = "drupal" -datestamp = "1231976415" +datestamp = "1241050830" diff -Nru /tmp/UbRhTEuk2W/drupal5-5.15/modules/path/path.info /tmp/LfgDx2HjQz/drupal5-5.17/modules/path/path.info --- drupal5-5.15/modules/path/path.info 2009-01-14 23:40:15.000000000 +0000 +++ drupal5-5.17/modules/path/path.info 2009-04-30 01:20:30.000000000 +0100 @@ -4,8 +4,8 @@ package = Core - optional version = VERSION -; Information added by drupal.org packaging script on 2009-01-14 -version = "5.15" +; Information added by drupal.org packaging script on 2009-04-30 +version = "5.17" project = "drupal" -datestamp = "1231976415" +datestamp = "1241050830" diff -Nru /tmp/UbRhTEuk2W/drupal5-5.15/modules/ping/ping.info /tmp/LfgDx2HjQz/drupal5-5.17/modules/ping/ping.info --- drupal5-5.15/modules/ping/ping.info 2009-01-14 23:40:15.000000000 +0000 +++ drupal5-5.17/modules/ping/ping.info 2009-04-30 01:20:30.000000000 +0100 @@ -4,8 +4,8 @@ package = Core - optional version = VERSION -; Information added by drupal.org packaging script on 2009-01-14 -version = "5.15" +; Information added by drupal.org packaging script on 2009-04-30 +version = "5.17" project = "drupal" -datestamp = "1231976415" +datestamp = "1241050830" diff -Nru /tmp/UbRhTEuk2W/drupal5-5.15/modules/poll/poll.info /tmp/LfgDx2HjQz/drupal5-5.17/modules/poll/poll.info --- drupal5-5.15/modules/poll/poll.info 2009-01-14 23:40:15.000000000 +0000 +++ drupal5-5.17/modules/poll/poll.info 2009-04-30 01:20:30.000000000 +0100 @@ -4,8 +4,8 @@ package = Core - optional version = VERSION -; Information added by drupal.org packaging script on 2009-01-14 -version = "5.15" +; Information added by drupal.org packaging script on 2009-04-30 +version = "5.17" project = "drupal" -datestamp = "1231976415" +datestamp = "1241050830" diff -Nru /tmp/UbRhTEuk2W/drupal5-5.15/modules/profile/profile.info /tmp/LfgDx2HjQz/drupal5-5.17/modules/profile/profile.info --- drupal5-5.15/modules/profile/profile.info 2009-01-14 23:40:15.000000000 +0000 +++ drupal5-5.17/modules/profile/profile.info 2009-04-30 01:20:30.000000000 +0100 @@ -4,8 +4,8 @@ package = Core - optional version = VERSION -; Information added by drupal.org packaging script on 2009-01-14 -version = "5.15" +; Information added by drupal.org packaging script on 2009-04-30 +version = "5.17" project = "drupal" -datestamp = "1231976415" +datestamp = "1241050830" diff -Nru /tmp/UbRhTEuk2W/drupal5-5.15/modules/search/search.info /tmp/LfgDx2HjQz/drupal5-5.17/modules/search/search.info --- drupal5-5.15/modules/search/search.info 2009-01-14 23:40:15.000000000 +0000 +++ drupal5-5.17/modules/search/search.info 2009-04-30 01:20:30.000000000 +0100 @@ -4,8 +4,8 @@ package = Core - optional version = VERSION -; Information added by drupal.org packaging script on 2009-01-14 -version = "5.15" +; Information added by drupal.org packaging script on 2009-04-30 +version = "5.17" project = "drupal" -datestamp = "1231976415" +datestamp = "1241050830" diff -Nru /tmp/UbRhTEuk2W/drupal5-5.15/modules/statistics/statistics.info /tmp/LfgDx2HjQz/drupal5-5.17/modules/statistics/statistics.info --- drupal5-5.15/modules/statistics/statistics.info 2009-01-14 23:40:15.000000000 +0000 +++ drupal5-5.17/modules/statistics/statistics.info 2009-04-30 01:20:30.000000000 +0100 @@ -4,8 +4,8 @@ package = Core - optional version = VERSION -; Information added by drupal.org packaging script on 2009-01-14 -version = "5.15" +; Information added by drupal.org packaging script on 2009-04-30 +version = "5.17" project = "drupal" -datestamp = "1231976415" +datestamp = "1241050830" diff -Nru /tmp/UbRhTEuk2W/drupal5-5.15/modules/system/system.info /tmp/LfgDx2HjQz/drupal5-5.17/modules/system/system.info --- drupal5-5.15/modules/system/system.info 2009-01-14 23:40:15.000000000 +0000 +++ drupal5-5.17/modules/system/system.info 2009-04-30 01:20:30.000000000 +0100 @@ -4,8 +4,8 @@ package = Core - required version = VERSION -; Information added by drupal.org packaging script on 2009-01-14 -version = "5.15" +; Information added by drupal.org packaging script on 2009-04-30 +version = "5.17" project = "drupal" -datestamp = "1231976415" +datestamp = "1241050830" diff -Nru /tmp/UbRhTEuk2W/drupal5-5.15/modules/system/system.install /tmp/LfgDx2HjQz/drupal5-5.17/modules/system/system.install --- drupal5-5.15/modules/system/system.install 2008-02-25 02:25:36.000000000 +0000 +++ drupal5-5.17/modules/system/system.install 2009-03-22 19:55:22.000000000 +0000 @@ -1,5 +1,5 @@ $typed_string, '#autocomplete_path' => 'taxonomy/autocomplete/'. $vocabulary->vid, '#weight' => $vocabulary->weight, - '#maxlength' => 255, + '#maxlength' => 1024, ); } else { diff -Nru /tmp/UbRhTEuk2W/drupal5-5.15/modules/throttle/throttle.info /tmp/LfgDx2HjQz/drupal5-5.17/modules/throttle/throttle.info --- drupal5-5.15/modules/throttle/throttle.info 2009-01-14 23:40:15.000000000 +0000 +++ drupal5-5.17/modules/throttle/throttle.info 2009-04-30 01:20:30.000000000 +0100 @@ -4,8 +4,8 @@ package = Core - optional version = VERSION -; Information added by drupal.org packaging script on 2009-01-14 -version = "5.15" +; Information added by drupal.org packaging script on 2009-04-30 +version = "5.17" project = "drupal" -datestamp = "1231976415" +datestamp = "1241050830" diff -Nru /tmp/UbRhTEuk2W/drupal5-5.15/modules/tracker/tracker.info /tmp/LfgDx2HjQz/drupal5-5.17/modules/tracker/tracker.info --- drupal5-5.15/modules/tracker/tracker.info 2009-01-14 23:40:15.000000000 +0000 +++ drupal5-5.17/modules/tracker/tracker.info 2009-04-30 01:20:30.000000000 +0100 @@ -5,8 +5,8 @@ package = Core - optional version = VERSION -; Information added by drupal.org packaging script on 2009-01-14 -version = "5.15" +; Information added by drupal.org packaging script on 2009-04-30 +version = "5.17" project = "drupal" -datestamp = "1231976415" +datestamp = "1241050830" diff -Nru /tmp/UbRhTEuk2W/drupal5-5.15/modules/upload/upload.info /tmp/LfgDx2HjQz/drupal5-5.17/modules/upload/upload.info --- drupal5-5.15/modules/upload/upload.info 2009-01-14 23:40:15.000000000 +0000 +++ drupal5-5.17/modules/upload/upload.info 2009-04-30 01:20:30.000000000 +0100 @@ -4,8 +4,8 @@ package = Core - optional version = VERSION -; Information added by drupal.org packaging script on 2009-01-14 -version = "5.15" +; Information added by drupal.org packaging script on 2009-04-30 +version = "5.17" project = "drupal" -datestamp = "1231976415" +datestamp = "1241050830" diff -Nru /tmp/UbRhTEuk2W/drupal5-5.15/modules/user/user.info /tmp/LfgDx2HjQz/drupal5-5.17/modules/user/user.info --- drupal5-5.15/modules/user/user.info 2009-01-14 23:40:15.000000000 +0000 +++ drupal5-5.17/modules/user/user.info 2009-04-30 01:20:30.000000000 +0100 @@ -4,8 +4,8 @@ package = Core - required version = VERSION -; Information added by drupal.org packaging script on 2009-01-14 -version = "5.15" +; Information added by drupal.org packaging script on 2009-04-30 +version = "5.17" project = "drupal" -datestamp = "1231976415" +datestamp = "1241050830" diff -Nru /tmp/UbRhTEuk2W/drupal5-5.15/modules/watchdog/watchdog.info /tmp/LfgDx2HjQz/drupal5-5.17/modules/watchdog/watchdog.info --- drupal5-5.15/modules/watchdog/watchdog.info 2009-01-14 23:40:15.000000000 +0000 +++ drupal5-5.17/modules/watchdog/watchdog.info 2009-04-30 01:20:30.000000000 +0100 @@ -4,8 +4,8 @@ package = Core - required version = VERSION -; Information added by drupal.org packaging script on 2009-01-14 -version = "5.15" +; Information added by drupal.org packaging script on 2009-04-30 +version = "5.17" project = "drupal" -datestamp = "1231976415" +datestamp = "1241050830" diff -Nru /tmp/UbRhTEuk2W/drupal5-5.15/themes/bluemarine/page.tpl.php /tmp/LfgDx2HjQz/drupal5-5.17/themes/bluemarine/page.tpl.php --- drupal5-5.15/themes/bluemarine/page.tpl.php 2006-08-30 08:37:13.000000000 +0100 +++ drupal5-5.17/themes/bluemarine/page.tpl.php 2009-04-30 01:13:49.000000000 +0100 @@ -2,8 +2,8 @@ - <?php print $head_title ?> + <?php print $head_title ?> diff -Nru /tmp/UbRhTEuk2W/drupal5-5.15/themes/chameleon/chameleon.theme /tmp/LfgDx2HjQz/drupal5-5.17/themes/chameleon/chameleon.theme --- drupal5-5.15/themes/chameleon/chameleon.theme 2007-05-31 07:13:36.000000000 +0100 +++ drupal5-5.17/themes/chameleon/chameleon.theme 2009-04-30 01:13:49.000000000 +0100 @@ -1,5 +1,5 @@ \n"; $output .= "\n"; $output .= "\n"; - $output .= " ". ($title ? strip_tags($title) ." | ". variable_get("site_name", "Drupal") : variable_get("site_name", "Drupal") ." | ". variable_get("site_slogan", "")) ."\n"; $output .= drupal_get_html_head(); + $output .= " ". ($title ? strip_tags($title) ." | ". variable_get("site_name", "Drupal") : variable_get("site_name", "Drupal") ." | ". variable_get("site_slogan", "")) ."\n"; $output .= drupal_get_css(); $output .= drupal_get_js(); $output .= ""; diff -Nru /tmp/UbRhTEuk2W/drupal5-5.15/themes/engines/phptemplate/phptemplate.engine /tmp/LfgDx2HjQz/drupal5-5.17/themes/engines/phptemplate/phptemplate.engine --- drupal5-5.15/themes/engines/phptemplate/phptemplate.engine 2008-08-13 19:47:17.000000000 +0100 +++ drupal5-5.17/themes/engines/phptemplate/phptemplate.engine 2009-04-29 18:49:52.000000000 +0100 @@ -1,5 +1,5 @@ - <?php print $head_title ?> + <?php print $head_title ?> diff -Nru /tmp/UbRhTEuk2W/drupal5-5.15/themes/pushbutton/page.tpl.php /tmp/LfgDx2HjQz/drupal5-5.17/themes/pushbutton/page.tpl.php --- drupal5-5.15/themes/pushbutton/page.tpl.php 2006-08-30 08:37:14.000000000 +0100 +++ drupal5-5.17/themes/pushbutton/page.tpl.php 2009-04-30 01:13:49.000000000 +0100 @@ -1,9 +1,9 @@ - <?php print $head_title ?> + <?php print $head_title ?>