? 0001-Fixed-description-value-of-access-and-cache.patch
? 0001-no-style-settings-for-unformatted.patch
? 329390-php-4-break-phrase.patch
? 330956-fix-theme-information
? 370651-mod-security-hates-me.patch
? 411566-taxonomy-menu-weirdness.patch
? 442768-php-4-references-are-annoying.patch
? 450346-exposed-filters-sometimes-hide.patch
? 452384-fix-php-5.3.patch
? 494490-user-picture-block-element.patch
? 511908-19.views_exposed_filter_double_escape.patch
? 515564-increase-field-delta.patch
? 535206-attachments-repeat-exposed-filters.patch
? 539498-comment-link-in-wrong-place.patch
? 550560-views-help-ini.patch
? 581616-views-admin-css-colors.patch
? 592476-redundant-css.patch
? 593910-off-by-one.patch
? 607952-check-plain-queries.patch
? 619884-grouping-incorrectly.patch
? 620046-date-validate-fallback.patch
? 622602-fix-missing-order-by.patch
? 622608-attachment-inherit-pager.patch
? 622608-attachment-inherit-pager_0_0.patch
? 650152-top-level-book-relationship-broken.patch
? TODO.txt
? Views 3 TODO.txt
? ajax_pager_settings.patch
? alternatively-just-fix-the-help-text.patch
? api.txt
? book.txt
? clean-views-1-tables.patch
? contact-form.patch
? contact_link_access_2.patch
? doc
? fix-base-relationship-again.patch
? fix-grouping-index-bug.patch
? grid-fix_3.patch
? jump-menu-styles.patch
? move-renders.patch
? netbeans
? node_language_handler.patch
? notice-fix.patch
? options[id]
? redundant-css.patch
? reorder-displays_5.patch
? sdboyer-relationship.patch
? test.php
? token
? views-363516-unique-identifiers.patch
? views-376284.patch
? views-408894.patch
? views-420850.patch
? views-535424.patch
? views-561892.patch
? views-580320.patch
? views-620046-1.patch
? views-638916.patch
? views-HEAD-table_preprocess_row_store.patch
? views-HEAD-table_preprocess_row_store.patch.1
? views-admin.css_.patch
? views-alter-plugins_0.patch
? views-any.patch
? views-comment-without-links.patch
? views-counter_row_index.patch
? views-field-markup.patch
? views-get-total-rows.patch
? views-get-view-result.patch
? views-hidden-options_0.patch
? views-labels-for.patch
? views-language.patch
? views-remove_user_search.patch
? views-trim-fix.patch
? views-typofix.patch
? views-user-picture-sort.patch
? views-validate-term-cache.patch
? views-views-embed-view-access-554016-2.patch
? views.help_.ini_.patch
? views2-bug-623580.patch
? views2-export-should-be-ltr.patch
? views_494490_6.patch
? views_HEAD_defaulted_handler_validation.patch
? views_arg_taxo_depth.patch
? views_argument_empty_text_attachment.patch
? views_base_field.patch
? views_feed_preview.patch
? views_handler_filter_in_operator-fix.patch
? views_handler_filter_node_access.patch
? views_help_topic-589484-2.patch
? views_table_first_last_classes_0.patch
? views_tabledrag-366250-22.patch
? handlers/views-489888.patch
? modules/search/views-view-row-search.tpl.php
? modules/user/views_handler_field_is_online.inc
Index: includes/handlers.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/views/includes/handlers.inc,v
retrieving revision 1.119.2.3
diff -u -p -r1.119.2.3 handlers.inc
--- includes/handlers.inc	2 Dec 2009 21:51:40 -0000	1.119.2.3
+++ includes/handlers.inc	4 Dec 2009 05:33:59 -0000
@@ -780,13 +780,12 @@ class views_many_to_one_helper {
  * @param $str
  *   The string to parse.
  * @param $filter
- *   The filter object to use as a base. If not specified one will
- *   be created.
+ *   The filter object to use as a base.
  *
  * @return $filter
  *   The new filter object.
  */
-function views_break_phrase($str, $filter = NULL) {
+function views_break_phrase($str, &$filter) {
   if (!$filter) {
     $filter = new stdClass();
   }
Index: theme/theme.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/views/theme/theme.inc,v
retrieving revision 1.84.2.4
diff -u -p -r1.84.2.4 theme.inc
--- theme/theme.inc	30 Nov 2009 19:05:47 -0000	1.84.2.4
+++ theme/theme.inc	4 Dec 2009 05:34:00 -0000
@@ -206,7 +206,8 @@ function template_preprocess_views_view_
  * this: @code { $row->{$field->field_alias} @endcode
  */
 function theme_views_view_field($view, $field, $row) {
-  return $field->advanced_render($row);
+  // Reference safe for PHP 4:
+  return $view->field[$field->options['id']]->advanced_render($row);
 }
 
 /**
