Index: COPYRIGHT.txt =================================================================== RCS file: /cvs/drupal/drupal/COPYRIGHT.txt,v retrieving revision 1.4 diff -u -p -r1.4 COPYRIGHT.txt --- COPYRIGHT.txt 20 Dec 2008 18:24:32 -0000 1.4 +++ COPYRIGHT.txt 21 Apr 2009 00:19:54 -0000 @@ -22,4 +22,3 @@ according to the terms of the GNU Genera license, including: jQuery - Copyright (c) 2008 John Resig - Index: INSTALL.mysql.txt =================================================================== RCS file: /cvs/drupal/drupal/INSTALL.mysql.txt,v retrieving revision 1.10 diff -u -p -r1.10 INSTALL.mysql.txt --- INSTALL.mysql.txt 19 Nov 2007 19:53:51 -0000 1.10 +++ INSTALL.mysql.txt 21 Apr 2009 00:19:54 -0000 @@ -37,4 +37,3 @@ not be able to run Drupal. If successful, MySQL will reply with: Query OK, 0 rows affected - Index: includes/actions.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/actions.inc,v retrieving revision 1.26 diff -u -p -r1.26 actions.inc --- includes/actions.inc 18 Mar 2009 09:50:46 -0000 1.26 +++ includes/actions.inc 21 Apr 2009 00:19:55 -0000 @@ -363,4 +363,3 @@ function actions_delete($aid) { ->execute(); module_invoke_all('actions_delete', $aid); } - Index: includes/batch.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/batch.inc,v retrieving revision 1.33 diff -u -p -r1.33 batch.inc --- includes/batch.inc 15 Apr 2009 23:49:06 -0000 1.33 +++ includes/batch.inc 21 Apr 2009 00:19:56 -0000 @@ -430,4 +430,3 @@ function _batch_shutdown() { ->execute(); } } - Index: includes/graph.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/graph.inc,v retrieving revision 1.2 diff -u -p -r1.2 graph.inc --- includes/graph.inc 11 Apr 2009 17:58:17 -0000 1.2 +++ includes/graph.inc 21 Apr 2009 00:19:56 -0000 @@ -144,4 +144,3 @@ function _drupal_depth_first_search(&$gr // topological order if the graph is acyclic. $state['last_visit_order'][] = $start; } - Index: includes/locale.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/locale.inc,v retrieving revision 1.211 diff -u -p -r1.211 locale.inc --- includes/locale.inc 8 Apr 2009 02:55:52 -0000 1.211 +++ includes/locale.inc 21 Apr 2009 00:20:01 -0000 @@ -2690,4 +2690,3 @@ function country_get_list() { drupal_alter('countries', $countries); return $countries; } - Index: includes/password.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/password.inc,v retrieving revision 1.6 diff -u -p -r1.6 password.inc --- includes/password.inc 26 Feb 2009 07:30:26 -0000 1.6 +++ includes/password.inc 21 Apr 2009 00:20:01 -0000 @@ -240,4 +240,3 @@ function user_needs_new_hash($account) { // Check whether the iteration count used differs from the standard number. return (_password_get_count_log2($account->pass) != variable_get('password_count_log2', DRUPAL_HASH_COUNT)); } - Index: includes/registry.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/registry.inc,v retrieving revision 1.13 diff -u -p -r1.13 registry.inc --- includes/registry.inc 3 Apr 2009 17:41:32 -0000 1.13 +++ includes/registry.inc 21 Apr 2009 00:20:01 -0000 @@ -260,4 +260,3 @@ function _registry_skip_body(&$tokens) { /** * @} End of "defgroup registry". */ - Index: includes/unicode.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/unicode.inc,v retrieving revision 1.37 diff -u -p -r1.37 unicode.inc --- includes/unicode.inc 2 Jan 2009 22:09:53 -0000 1.37 +++ includes/unicode.inc 21 Apr 2009 00:20:02 -0000 @@ -331,9 +331,9 @@ function decode_entities($text, $exclude // Flip the exclude list so that we can do quick lookups later. $exclude = array_flip($exclude); - // Use a regexp to select all entities in one pass, to avoid decoding + // Use a regexp to select all entities in one pass, to avoid decoding // double-escaped entities twice. The PREG_REPLACE_EVAL modifier 'e' is - // being used to allow for a callback (see + // being used to allow for a callback (see // http://php.net/manual/en/reference.pcre.pattern.modifiers). return preg_replace('/&(#x?)?([A-Za-z0-9]+);/e', '_decode_entities("$1", "$2", "$0", $html_entities, $exclude)', $text); } @@ -543,5 +543,3 @@ function drupal_substr($text, $start, $l return substr($text, $istart, max(0, $iend - $istart + 1)); } } - - Index: includes/database/prefetch.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/database/prefetch.inc,v retrieving revision 1.4 diff -u -p -r1.4 prefetch.inc --- includes/database/prefetch.inc 29 Mar 2009 12:48:33 -0000 1.4 +++ includes/database/prefetch.inc 21 Apr 2009 00:20:03 -0000 @@ -502,4 +502,3 @@ class DatabaseStatementPrefetch implemen /** * @} End of "ingroup database". */ - Index: includes/database/schema.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/database/schema.inc,v retrieving revision 1.12 diff -u -p -r1.12 schema.inc --- includes/database/schema.inc 14 Mar 2009 20:34:17 -0000 1.12 +++ includes/database/schema.inc 21 Apr 2009 00:20:04 -0000 @@ -514,4 +514,3 @@ abstract class DatabaseSchema { /** * @} End of "defgroup schemaapi". */ - Index: includes/database/mysql/install.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/database/mysql/install.inc,v retrieving revision 1.1 diff -u -p -r1.1 install.inc --- includes/database/mysql/install.inc 21 Aug 2008 19:36:36 -0000 1.1 +++ includes/database/mysql/install.inc 21 Apr 2009 00:20:04 -0000 @@ -9,4 +9,3 @@ class DatabaseInstaller_mysql extends Da return 'MySQL'; } } - Index: includes/database/pgsql/install.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/database/pgsql/install.inc,v retrieving revision 1.1 diff -u -p -r1.1 install.inc --- includes/database/pgsql/install.inc 21 Aug 2008 19:36:36 -0000 1.1 +++ includes/database/pgsql/install.inc 21 Apr 2009 00:20:04 -0000 @@ -9,4 +9,3 @@ class DatabaseInstaller_pgsql extends Da return 'PostgreSQL'; } } - Index: includes/database/sqlite/install.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/database/sqlite/install.inc,v retrieving revision 1.1 diff -u -p -r1.1 install.inc --- includes/database/sqlite/install.inc 23 Nov 2008 06:06:15 -0000 1.1 +++ includes/database/sqlite/install.inc 21 Apr 2009 00:20:04 -0000 @@ -12,4 +12,3 @@ class DatabaseInstaller_sqlite extends D return 'SQLite'; } } - Index: misc/farbtastic/farbtastic.css =================================================================== RCS file: /cvs/drupal/drupal/misc/farbtastic/farbtastic.css,v retrieving revision 1.3 diff -u -p -r1.3 farbtastic.css --- misc/farbtastic/farbtastic.css 13 Apr 2007 07:33:23 -0000 1.3 +++ misc/farbtastic/farbtastic.css 21 Apr 2009 00:20:04 -0000 @@ -32,4 +32,3 @@ overflow: hidden; background: url(marker.png) no-repeat; } - Index: modules/README.txt =================================================================== RCS file: /cvs/drupal/drupal/modules/README.txt,v retrieving revision 1.2 diff -u -p -r1.2 README.txt --- modules/README.txt 25 Jan 2008 19:47:58 -0000 1.2 +++ modules/README.txt 21 Apr 2009 00:20:04 -0000 @@ -5,4 +5,3 @@ under /sites/{sitename}/modules/, where (e.g., www.example.com). This will allow you to more easily update Drupal core files. For more details, see: http://drupal.org/node/176043 - Index: modules/aggregator/tests/aggregator_test_rss091.xml =================================================================== RCS file: /cvs/drupal/drupal/modules/aggregator/tests/aggregator_test_rss091.xml,v retrieving revision 1.1 diff -u -p -r1.1 aggregator_test_rss091.xml --- modules/aggregator/tests/aggregator_test_rss091.xml 2 Apr 2009 20:50:37 -0000 1.1 +++ modules/aggregator/tests/aggregator_test_rss091.xml 21 Apr 2009 00:20:04 -0000 @@ -27,4 +27,4 @@ Example turns two. - \ No newline at end of file + Index: modules/blog/blog.module =================================================================== RCS file: /cvs/drupal/drupal/modules/blog/blog.module,v retrieving revision 1.318 diff -u -p -r1.318 blog.module --- modules/blog/blog.module 15 Apr 2009 13:50:07 -0000 1.318 +++ modules/blog/blog.module 21 Apr 2009 00:20:05 -0000 @@ -206,4 +206,3 @@ function blog_block_view($delta = '') { } } } - Index: modules/blogapi/blogapi.module =================================================================== RCS file: /cvs/drupal/drupal/modules/blogapi/blogapi.module,v retrieving revision 1.147 diff -u -p -r1.147 blogapi.module --- modules/blogapi/blogapi.module 1 Apr 2009 01:28:24 -0000 1.147 +++ modules/blogapi/blogapi.module 21 Apr 2009 00:20:08 -0000 @@ -971,4 +971,3 @@ function _blogapi_get_node_types() { function _blogapi_space_used($uid) { return db_query('SELECT SUM(filesize) FROM {blogapi_files} f WHERE f.uid = :uid', array(':uid' => $uid))->fetchField(); } - Index: modules/book/book.admin.inc =================================================================== RCS file: /cvs/drupal/drupal/modules/book/book.admin.inc,v retrieving revision 1.19 diff -u -p -r1.19 book.admin.inc --- modules/book/book.admin.inc 14 Mar 2009 20:13:26 -0000 1.19 +++ modules/book/book.admin.inc 21 Apr 2009 00:20:09 -0000 @@ -258,4 +258,3 @@ function theme_book_admin_table($form) { return theme('table', $header, $rows, array('id' => 'book-outline')); } - Index: modules/contact/contact.module =================================================================== RCS file: /cvs/drupal/drupal/modules/contact/contact.module,v retrieving revision 1.112 diff -u -p -r1.112 contact.module --- modules/contact/contact.module 8 Mar 2009 05:08:22 -0000 1.112 +++ modules/contact/contact.module 21 Apr 2009 00:20:09 -0000 @@ -93,9 +93,10 @@ function contact_menu() { 'type' => MENU_LOCAL_TASK, 'weight' => 2, ); - $items['contact'] = array( + $items['contact/%contact'] = array( 'title' => 'Contact', 'page callback' => 'contact_site_page', + 'page arguments' => array(1), 'access arguments' => array('access site-wide contact form'), 'type' => MENU_SUGGESTED_ITEM, ); Index: modules/contact/contact.pages.inc =================================================================== RCS file: /cvs/drupal/drupal/modules/contact/contact.pages.inc,v retrieving revision 1.16 diff -u -p -r1.16 contact.pages.inc --- modules/contact/contact.pages.inc 8 Mar 2009 05:08:22 -0000 1.16 +++ modules/contact/contact.pages.inc 21 Apr 2009 00:20:09 -0000 @@ -10,29 +10,40 @@ /** * Site-wide contact page. */ -function contact_site_page() { +function contact_site_page($category = array()) { global $user; if (!flood_is_allowed('contact', variable_get('contact_hourly_threshold', 3)) && !user_access('administer site-wide contact form')) { $output = t("You cannot send more than %number messages per hour. Please try again later.", array('%number' => variable_get('contact_hourly_threshold', 3))); } else { - $output = drupal_get_form('contact_mail_page'); + $output = drupal_get_form('contact_mail_page' $category); } return $output; } -function contact_mail_page() { +/** + * Form builder; site-wide contact form. + * + * @param $contact + * An array containing the data of the requested contact category. + */ +function contact_mail_page($form_state, $category = array()) { global $user; $form = $categories = array(); - $result = db_select('contact') - ->fields('contact', array('cid', 'category', 'selected')) - ->orderby('weight') - ->orderby('category') - ->execute(); + if ($category) { + $categories[] = $category; + } + else { + $result = db_select('contact') + ->fields('contact', array('cid', 'category', 'selected')) + ->orderby('weight') + ->orderby('category') + ->execute(); + } foreach ($result as $record) { $categories[$record->cid] = $record->category; Index: modules/field/field.module =================================================================== RCS file: /cvs/drupal/drupal/modules/field/field.module,v retrieving revision 1.7 diff -u -p -r1.7 field.module --- modules/field/field.module 26 Mar 2009 13:31:24 -0000 1.7 +++ modules/field/field.module 21 Apr 2009 00:20:09 -0000 @@ -607,4 +607,4 @@ function template_preprocess_field(&$var /** * @} End of "defgroup field" - */ \ No newline at end of file + */ Index: modules/field/modules/field_sql_storage/field_sql_storage.info =================================================================== RCS file: /cvs/drupal/drupal/modules/field/modules/field_sql_storage/field_sql_storage.info,v retrieving revision 1.1 diff -u -p -r1.1 field_sql_storage.info --- modules/field/modules/field_sql_storage/field_sql_storage.info 3 Feb 2009 17:30:11 -0000 1.1 +++ modules/field/modules/field_sql_storage/field_sql_storage.info 21 Apr 2009 00:20:09 -0000 @@ -5,4 +5,4 @@ package = Core - fields core = 7.x files[] = field_sql_storage.module files[] = field_sql_storage.install -required = TRUE \ No newline at end of file +required = TRUE Index: modules/field/modules/field_sql_storage/field_sql_storage.module =================================================================== RCS file: /cvs/drupal/drupal/modules/field/modules/field_sql_storage/field_sql_storage.module,v retrieving revision 1.6 diff -u -p -r1.6 field_sql_storage.module --- modules/field/modules/field_sql_storage/field_sql_storage.module 30 Mar 2009 03:44:55 -0000 1.6 +++ modules/field/modules/field_sql_storage/field_sql_storage.module 21 Apr 2009 00:20:09 -0000 @@ -384,4 +384,4 @@ function field_sql_storage_field_storage ->condition('bundle', $bundle_old) ->execute(); } -} \ No newline at end of file +} Index: modules/field/modules/number/number.module =================================================================== RCS file: /cvs/drupal/drupal/modules/field/modules/number/number.module,v retrieving revision 1.6 diff -u -p -r1.6 number.module --- modules/field/modules/number/number.module 12 Apr 2009 02:18:51 -0000 1.6 +++ modules/field/modules/number/number.module 21 Apr 2009 00:20:10 -0000 @@ -429,4 +429,4 @@ function number_decimal_validate($elemen */ function theme_number($element) { return $element['#children']; -} \ No newline at end of file +} Index: modules/field/modules/options/options.module =================================================================== RCS file: /cvs/drupal/drupal/modules/field/modules/options/options.module,v retrieving revision 1.5 diff -u -p -r1.5 options.module --- modules/field/modules/options/options.module 12 Apr 2009 02:18:51 -0000 1.5 +++ modules/field/modules/options/options.module 21 Apr 2009 00:20:11 -0000 @@ -428,4 +428,4 @@ function theme_options_onoff($element) { function theme_options_buttons($element) { return $element['#children']; -} \ No newline at end of file +} Index: modules/field/theme/field.css =================================================================== RCS file: /cvs/drupal/drupal/modules/field/theme/field.css,v retrieving revision 1.4 diff -u -p -r1.4 field.css --- modules/field/theme/field.css 30 Mar 2009 05:28:41 -0000 1.4 +++ modules/field/theme/field.css 21 Apr 2009 00:20:11 -0000 @@ -35,4 +35,4 @@ form .field-add-more-submit { .form-item .number { display: inline; width: auto; -} \ No newline at end of file +} Index: modules/help/help.admin.inc =================================================================== RCS file: /cvs/drupal/drupal/modules/help/help.admin.inc,v retrieving revision 1.8 diff -u -p -r1.8 help.admin.inc --- modules/help/help.admin.inc 18 Feb 2009 14:28:22 -0000 1.8 +++ modules/help/help.admin.inc 21 Apr 2009 00:20:11 -0000 @@ -73,4 +73,3 @@ function help_links_as_list() { return $output; } - Index: modules/locale/locale.install =================================================================== RCS file: /cvs/drupal/drupal/modules/locale/locale.install,v retrieving revision 1.35 diff -u -p -r1.35 locale.install --- modules/locale/locale.install 1 Apr 2009 20:00:46 -0000 1.35 +++ modules/locale/locale.install 21 Apr 2009 00:20:12 -0000 @@ -411,4 +411,3 @@ function locale_schema() { return $schema; } - Index: modules/locale/locale.test =================================================================== RCS file: /cvs/drupal/drupal/modules/locale/locale.test,v retrieving revision 1.22 diff -u -p -r1.22 locale.test --- modules/locale/locale.test 1 Apr 2009 20:00:46 -0000 1.22 +++ modules/locale/locale.test 21 Apr 2009 00:20:16 -0000 @@ -1376,4 +1376,3 @@ class LocaleContentFunctionalTest extend $this->drupalLogout(); } } - Index: modules/menu/menu.install =================================================================== RCS file: /cvs/drupal/drupal/modules/menu/menu.install,v retrieving revision 1.16 diff -u -p -r1.16 menu.install --- modules/menu/menu.install 25 Mar 2009 13:55:22 -0000 1.16 +++ modules/menu/menu.install 21 Apr 2009 00:20:16 -0000 @@ -63,4 +63,3 @@ function menu_schema() { return $schema; } - Index: modules/node/node.css =================================================================== RCS file: /cvs/drupal/drupal/modules/node/node.css,v retrieving revision 1.7 diff -u -p -r1.7 node.css --- modules/node/node.css 30 Mar 2009 03:15:40 -0000 1.7 +++ modules/node/node.css 21 Apr 2009 00:20:17 -0000 @@ -42,4 +42,3 @@ td.revision-current { .terms-inline { display: inline; } - Index: modules/node/node.tpl.php =================================================================== RCS file: /cvs/drupal/drupal/modules/node/node.tpl.php,v retrieving revision 1.10 diff -u -p -r1.10 node.tpl.php --- modules/node/node.tpl.php 18 Feb 2009 14:28:22 -0000 1.10 +++ modules/node/node.tpl.php 21 Apr 2009 00:20:17 -0000 @@ -75,4 +75,4 @@ - \ No newline at end of file + Index: modules/openid/openid.css =================================================================== RCS file: /cvs/drupal/drupal/modules/openid/openid.css,v retrieving revision 1.6 diff -u -p -r1.6 openid.css --- modules/openid/openid.css 31 Mar 2009 10:48:06 -0000 1.6 +++ modules/openid/openid.css 21 Apr 2009 00:20:17 -0000 @@ -33,8 +33,8 @@ html.js #user-login li.openid-link { #user-login li.user-link { display: none; } -#user-login-form li.openid-link a, +#user-login-form li.openid-link a, #user-login li.openid-link a { background: transparent url("login-bg.png") no-repeat 0 2px; padding: 0 20px; -} \ No newline at end of file +} Index: modules/openid/xrds.inc =================================================================== RCS file: /cvs/drupal/drupal/modules/openid/xrds.inc,v retrieving revision 1.3 diff -u -p -r1.3 xrds.inc --- modules/openid/xrds.inc 14 Apr 2008 17:48:38 -0000 1.3 +++ modules/openid/xrds.inc 21 Apr 2009 00:20:17 -0000 @@ -79,4 +79,4 @@ function _xrds_strip_namespace($name) { } return $name; -} \ No newline at end of file +} Index: modules/path/path.test =================================================================== RCS file: /cvs/drupal/drupal/modules/path/path.test,v retrieving revision 1.8 diff -u -p -r1.8 path.test --- modules/path/path.test 31 Mar 2009 02:02:22 -0000 1.8 +++ modules/path/path.test 21 Apr 2009 00:20:18 -0000 @@ -203,4 +203,3 @@ class PathLanguageTestCase extends Drupa $this->assertTrue(strpos($url, $edit['path']), t('URL contains the path alias.')); } } - Index: modules/php/php.module =================================================================== RCS file: /cvs/drupal/drupal/modules/php/php.module,v retrieving revision 1.12 diff -u -p -r1.12 php.module --- modules/php/php.module 21 Jan 2009 16:58:42 -0000 1.12 +++ modules/php/php.module 21 Apr 2009 00:20:19 -0000 @@ -84,6 +84,3 @@ function php_filter($op, $delta = 0, $fo return $text; } } - - - Index: modules/poll/poll.module =================================================================== RCS file: /cvs/drupal/drupal/modules/poll/poll.module,v retrieving revision 1.290 diff -u -p -r1.290 poll.module --- modules/poll/poll.module 9 Mar 2009 20:36:58 -0000 1.290 +++ modules/poll/poll.module 21 Apr 2009 00:20:19 -0000 @@ -854,4 +854,3 @@ function poll_user_cancel($edit, $accoun break; } } - Index: modules/profile/profile.js =================================================================== RCS file: /cvs/drupal/drupal/modules/profile/profile.js,v retrieving revision 1.5 diff -u -p -r1.5 profile.js --- modules/profile/profile.js 13 Mar 2009 23:15:09 -0000 1.5 +++ modules/profile/profile.js 21 Apr 2009 00:20:19 -0000 @@ -56,4 +56,4 @@ Drupal.behaviors.profileDrag = { } }; -})(jQuery); \ No newline at end of file +})(jQuery); Index: modules/profile/profile.module =================================================================== RCS file: /cvs/drupal/drupal/modules/profile/profile.module,v retrieving revision 1.252 diff -u -p -r1.252 profile.module --- modules/profile/profile.module 14 Mar 2009 23:01:37 -0000 1.252 +++ modules/profile/profile.module 21 Apr 2009 00:20:19 -0000 @@ -617,4 +617,3 @@ function _profile_get_fields($category, $sql .= ' ORDER BY category, weight'; return db_query($sql, $args); } - Index: modules/simpletest/drupal_web_test_case.php =================================================================== RCS file: /cvs/drupal/drupal/modules/simpletest/drupal_web_test_case.php,v retrieving revision 1.93 diff -u -p -r1.93 drupal_web_test_case.php --- modules/simpletest/drupal_web_test_case.php 17 Apr 2009 07:07:09 -0000 1.93 +++ modules/simpletest/drupal_web_test_case.php 21 Apr 2009 00:20:21 -0000 @@ -2140,4 +2140,3 @@ class DrupalWebTestCase { return $instance; } } - Index: modules/simpletest/files/README.txt =================================================================== RCS file: /cvs/drupal/drupal/modules/simpletest/files/README.txt,v retrieving revision 1.1 diff -u -p -r1.1 README.txt --- modules/simpletest/files/README.txt 20 Apr 2008 18:23:30 -0000 1.1 +++ modules/simpletest/files/README.txt 21 Apr 2009 00:20:21 -0000 @@ -2,4 +2,4 @@ $Id: README.txt,v 1.1 2008/04/20 18:23:3 These files are use in some tests that upload files or other operations were a file is useful. These files are copied to the files directory as specified -in the site settings. Other tests files are generated in order to save space. \ No newline at end of file +in the site settings. Other tests files are generated in order to save space. Index: modules/simpletest/tests/bootstrap.test =================================================================== RCS file: /cvs/drupal/drupal/modules/simpletest/tests/bootstrap.test,v retrieving revision 1.14 diff -u -p -r1.14 bootstrap.test --- modules/simpletest/tests/bootstrap.test 2 Apr 2009 20:39:44 -0000 1.14 +++ modules/simpletest/tests/bootstrap.test 21 Apr 2009 00:20:22 -0000 @@ -235,4 +235,3 @@ class HookBootExitTestCase extends Drupa $this->assertEqual(db_query("SELECT COUNT(*) FROM {watchdog} WHERE type = 'system_test' AND message = 'hook_exit'")->fetchField(), $calls, t('hook_exit called with agressive cache and no cached page.')); } } - Index: modules/simpletest/tests/cache.test =================================================================== RCS file: /cvs/drupal/drupal/modules/simpletest/tests/cache.test,v retrieving revision 1.4 diff -u -p -r1.4 cache.test --- modules/simpletest/tests/cache.test 31 Mar 2009 01:49:53 -0000 1.4 +++ modules/simpletest/tests/cache.test 21 Apr 2009 00:20:22 -0000 @@ -224,4 +224,4 @@ class CacheClearCase extends CacheTestCa || $this->checkCacheExists('test_cid_clear2', $this->default_value), t('Two caches removed after clearing cid substring with wildcard true.')); } -} \ No newline at end of file +} Index: modules/simpletest/tests/common.test =================================================================== RCS file: /cvs/drupal/drupal/modules/simpletest/tests/common.test,v retrieving revision 1.32 diff -u -p -r1.32 common.test --- modules/simpletest/tests/common.test 31 Mar 2009 01:49:53 -0000 1.32 +++ modules/simpletest/tests/common.test 21 Apr 2009 00:20:25 -0000 @@ -960,4 +960,3 @@ class DrupalErrorCollectionUnitTest exte } } } - Index: modules/simpletest/tests/database_test.module =================================================================== RCS file: /cvs/drupal/drupal/modules/simpletest/tests/database_test.module,v retrieving revision 1.7 diff -u -p -r1.7 database_test.module --- modules/simpletest/tests/database_test.module 22 Feb 2009 16:53:41 -0000 1.7 +++ modules/simpletest/tests/database_test.module 21 Apr 2009 00:20:25 -0000 @@ -145,7 +145,7 @@ function database_test_tablesort() { $query = db_select('test_task', 't'); $query ->fields('t', array('tid', 'pid', 'task', 'priority')); - + $query = $query->extend('TableSort')->setHeader($header); // We need all the results at once to check the sort. @@ -155,4 +155,4 @@ function database_test_tablesort() { 'tasks' => $tasks, )); exit; -} \ No newline at end of file +} Index: modules/simpletest/tests/field_test.module =================================================================== RCS file: /cvs/drupal/drupal/modules/simpletest/tests/field_test.module,v retrieving revision 1.3 diff -u -p -r1.3 field_test.module --- modules/simpletest/tests/field_test.module 26 Mar 2009 13:31:25 -0000 1.3 +++ modules/simpletest/tests/field_test.module 21 Apr 2009 00:20:26 -0000 @@ -518,4 +518,4 @@ function theme_field_formatter_field_tes } $output = implode('|', $items); return $settings['test_formatter_setting_multiple'] . '|' . $output; -} \ No newline at end of file +} Index: modules/simpletest/tests/graph.test =================================================================== RCS file: /cvs/drupal/drupal/modules/simpletest/tests/graph.test,v retrieving revision 1.3 diff -u -p -r1.3 graph.test --- modules/simpletest/tests/graph.test 11 Apr 2009 17:58:18 -0000 1.3 +++ modules/simpletest/tests/graph.test 21 Apr 2009 00:20:27 -0000 @@ -191,4 +191,3 @@ class GraphUnitTest extends DrupalWebTes } } } - Index: modules/simpletest/tests/registry.test =================================================================== RCS file: /cvs/drupal/drupal/modules/simpletest/tests/registry.test,v retrieving revision 1.6 diff -u -p -r1.6 registry.test --- modules/simpletest/tests/registry.test 31 Mar 2009 01:49:53 -0000 1.6 +++ modules/simpletest/tests/registry.test 21 Apr 2009 00:20:28 -0000 @@ -134,4 +134,3 @@ CONTENTS; } } - Index: modules/simpletest/tests/session_test.module =================================================================== RCS file: /cvs/drupal/drupal/modules/simpletest/tests/session_test.module,v retrieving revision 1.6 diff -u -p -r1.6 session_test.module --- modules/simpletest/tests/session_test.module 26 Jan 2009 14:08:43 -0000 1.6 +++ modules/simpletest/tests/session_test.module 21 Apr 2009 00:20:28 -0000 @@ -134,4 +134,3 @@ function session_test_user_login($edit = exit; } } - Index: modules/simpletest/tests/taxonomy_test.install =================================================================== RCS file: /cvs/drupal/drupal/modules/simpletest/tests/taxonomy_test.install,v retrieving revision 1.5 diff -u -p -r1.5 taxonomy_test.install --- modules/simpletest/tests/taxonomy_test.install 14 Jan 2009 21:16:20 -0000 1.5 +++ modules/simpletest/tests/taxonomy_test.install 21 Apr 2009 00:20:28 -0000 @@ -51,4 +51,3 @@ function taxonomy_test_install() { function taxonomy_test_uninstall() { drupal_uninstall_schema('taxonomy_test'); } - Index: modules/system/admin-rtl.css =================================================================== RCS file: /cvs/drupal/drupal/modules/system/admin-rtl.css,v retrieving revision 1.5 diff -u -p -r1.5 admin-rtl.css --- modules/system/admin-rtl.css 22 Dec 2007 23:24:25 -0000 1.5 +++ modules/system/admin-rtl.css 21 Apr 2009 00:20:28 -0000 @@ -34,4 +34,3 @@ table.screenshot { margin-left: 0; margin-right: 15px; } - Index: modules/tracker/tracker.module =================================================================== RCS file: /cvs/drupal/drupal/modules/tracker/tracker.module,v retrieving revision 1.157 diff -u -p -r1.157 tracker.module --- modules/tracker/tracker.module 6 May 2008 12:18:51 -0000 1.157 +++ modules/tracker/tracker.module 21 Apr 2009 00:20:28 -0000 @@ -70,4 +70,3 @@ function _tracker_myrecent_access($accou function _tracker_user_access($account) { return user_view_access($account) && user_access('access content'); } - Index: modules/trigger/trigger.install =================================================================== RCS file: /cvs/drupal/drupal/modules/trigger/trigger.install,v retrieving revision 1.8 diff -u -p -r1.8 trigger.install --- modules/trigger/trigger.install 8 Mar 2009 04:25:07 -0000 1.8 +++ modules/trigger/trigger.install 21 Apr 2009 00:20:28 -0000 @@ -59,5 +59,3 @@ function trigger_schema() { ); return $schema; } - - Index: modules/upload/upload.install =================================================================== RCS file: /cvs/drupal/drupal/modules/upload/upload.install,v retrieving revision 1.8 diff -u -p -r1.8 upload.install --- modules/upload/upload.install 15 Nov 2008 13:01:11 -0000 1.8 +++ modules/upload/upload.install 21 Apr 2009 00:20:28 -0000 @@ -81,5 +81,3 @@ function upload_schema() { return $schema; } - - Index: modules/user/user.install =================================================================== RCS file: /cvs/drupal/drupal/modules/user/user.install,v retrieving revision 1.22 diff -u -p -r1.22 user.install --- modules/user/user.install 13 Apr 2009 12:14:57 -0000 1.22 +++ modules/user/user.install 21 Apr 2009 00:20:29 -0000 @@ -467,4 +467,3 @@ function user_update_7004(&$sandbox) { * @} End of "defgroup user-updates-6.x-to-7.x" * The next series of updates should start at 8000. */ - Index: modules/user/user.module =================================================================== RCS file: /cvs/drupal/drupal/modules/user/user.module,v retrieving revision 1.974 diff -u -p -r1.974 user.module --- modules/user/user.module 13 Apr 2009 12:14:57 -0000 1.974 +++ modules/user/user.module 21 Apr 2009 00:20:37 -0000 @@ -2905,4 +2905,3 @@ function _user_forms(&$edit, $account, $ return empty($groups) ? FALSE : $groups; } - Index: scripts/password-hash.sh =================================================================== RCS file: /cvs/drupal/drupal/scripts/password-hash.sh,v retrieving revision 1.6 diff -u -p -r1.6 password-hash.sh --- scripts/password-hash.sh 26 Feb 2009 07:30:29 -0000 1.6 +++ scripts/password-hash.sh 21 Apr 2009 00:20:37 -0000 @@ -92,4 +92,3 @@ foreach ($passwords as $password) { print("\npassword: $password \t\thash: ". user_hash_password($password) ."\n"); } print("\n"); - Index: sites/all/README.txt =================================================================== RCS file: /cvs/drupal/drupal/sites/all/README.txt,v retrieving revision 1.4 diff -u -p -r1.4 README.txt --- sites/all/README.txt 18 Mar 2009 09:53:04 -0000 1.4 +++ sites/all/README.txt 21 Apr 2009 00:20:37 -0000 @@ -5,4 +5,3 @@ and themes which are common to all sites custom modules and themes in the sites directory will aid in upgrading Drupal core files. Place contributed and custom modules and themes in the sites/all/modules and sites/all/themes directories respectively. - Index: themes/README.txt =================================================================== RCS file: /cvs/drupal/drupal/themes/README.txt,v retrieving revision 1.2 diff -u -p -r1.2 README.txt --- themes/README.txt 25 Jan 2008 19:47:58 -0000 1.2 +++ themes/README.txt 21 Apr 2009 00:20:37 -0000 @@ -5,4 +5,3 @@ under /sites/{sitename}/themes/, where { (e.g., www.example.com). This will allow you to more easily update Drupal core files. For more details, see: http://drupal.org/node/176043 - Index: themes/engines/phptemplate/phptemplate.engine =================================================================== RCS file: /cvs/drupal/drupal/themes/engines/phptemplate/phptemplate.engine,v retrieving revision 1.71 diff -u -p -r1.71 phptemplate.engine --- themes/engines/phptemplate/phptemplate.engine 20 Sep 2008 20:22:25 -0000 1.71 +++ themes/engines/phptemplate/phptemplate.engine 21 Apr 2009 00:20:37 -0000 @@ -24,4 +24,3 @@ function phptemplate_theme($existing, $t $templates += drupal_find_theme_templates($existing, '.tpl.php', $path); return $templates; } - Index: themes/garland/color/preview.css =================================================================== RCS file: /cvs/drupal/drupal/themes/garland/color/preview.css,v retrieving revision 1.1 diff -u -p -r1.1 preview.css --- themes/garland/color/preview.css 29 Oct 2006 13:17:38 -0000 1.1 +++ themes/garland/color/preview.css 21 Apr 2009 00:20:37 -0000 @@ -55,4 +55,4 @@ } #preview a:hover { text-decoration: underline; -} \ No newline at end of file +}