diff --git a/drupal/sites/default/boinc/modules/contrib/cck/includes/views/handlers/content_handler_field_multiple.inc b/drupal/sites/default/boinc/modules/contrib/cck/includes/views/handlers/content_handler_field_multiple.inc
index bd31e24f7b9e223c5f305f51cb747b769eb97286..f388d66226d2e72a26d57a64cef0a2caf97a1c08 100644
--- a/drupal/sites/default/boinc/modules/contrib/cck/includes/views/handlers/content_handler_field_multiple.inc
+++ b/drupal/sites/default/boinc/modules/contrib/cck/includes/views/handlers/content_handler_field_multiple.inc
@@ -127,7 +127,7 @@ class content_handler_field_multiple extends content_handler_field {
     $this->field_alias = $this->aliases['vid'];
   }
 
-  function pre_render($values) {
+  function pre_render(&$values) {
     // If there are no values to render (displaying a summary, or query returned no results),
     // or if this is not a grouped field, do nothing specific.
     if (isset($this->view->build_info['summary']) || empty($values) || !$this->defer_query) {
diff --git a/drupal/sites/default/boinc/modules/contrib/content_profile/content_profile.rules_defaults.inc b/drupal/sites/default/boinc/modules/contrib/content_profile/content_profile.rules_defaults.inc
index b623755bd258db51f66eaefbed3f405cb55df33f..7c10ca05e8037955671df0d26061000a6a522caf 100644
--- a/drupal/sites/default/boinc/modules/contrib/content_profile/content_profile.rules_defaults.inc
+++ b/drupal/sites/default/boinc/modules/contrib/content_profile/content_profile.rules_defaults.inc
@@ -10,7 +10,8 @@
  * no profile.
  */
 function content_profile_rules_defaults() {
-  $type = array_shift(array_keys(content_profile_get_types('names')));
+  $types = array_keys(content_profile_get_types('names'));
+  $type = array_shift($types);
   $config =
 array (
   'rules' =>
diff --git a/drupal/sites/default/boinc/modules/contrib/ctools/views_content/plugins/views/views_content_plugin_display_panel_pane.inc b/drupal/sites/default/boinc/modules/contrib/ctools/views_content/plugins/views/views_content_plugin_display_panel_pane.inc
index 7d08130751014fb51540357fe34a655c20235c43..a7bcb95b071abaf4285035b1a1c02108bd7a1f8f 100644
--- a/drupal/sites/default/boinc/modules/contrib/ctools/views_content/plugins/views/views_content_plugin_display_panel_pane.inc
+++ b/drupal/sites/default/boinc/modules/contrib/ctools/views_content/plugins/views/views_content_plugin_display_panel_pane.inc
@@ -317,7 +317,7 @@ class views_content_plugin_display_panel_pane extends views_plugin_display {
    * Perform any necessary changes to the form values prior to storage.
    * There is no need for this function to actually store the data.
    */
-  function options_submit($form, &$form_state) {
+  function options_submit(&$form, &$form_state) {
     // It is very important to call the parent function here:
     parent::options_submit($form, $form_state);
     switch ($form_state['section']) {
diff --git a/drupal/sites/default/boinc/modules/contrib/panels/panels.module b/drupal/sites/default/boinc/modules/contrib/panels/panels.module
index d24b9bca4dccef40ac958d27211743b3a34b6c60..87ec70412001649b5f8b9dae0ff5533b70602c85 100644
--- a/drupal/sites/default/boinc/modules/contrib/panels/panels.module
+++ b/drupal/sites/default/boinc/modules/contrib/panels/panels.module
@@ -1124,7 +1124,7 @@ function panels_get_current_page_display($change = NULL) {
 /**
  * Clean up the panel pane variables for the template.
  */
-function template_preprocess_panels_pane($vars) {
+function template_preprocess_panels_pane(&$vars) {
   $content = $vars['output'];
   // basic classes
   $vars['classes'] = 'panel-pane';