Project: Webform Comfirm Email
Version: 7.x-1.x-dev

Fatal error: Cannot create references to/from string offsets nor overloaded objects in /sites/all/modules/webform_confirm_email/webform_confirm_email.report.inc on line 81

function webform_confirm_email_results_submissions($node, $user_filter, $pager_count) {
  global $user;

  $filters = _webform_confirm_email_get_submission_filters();

  require_once drupal_get_path('module', 'webform') . '/includes/webform.report.inc';
  $element = webform_results_submissions($node, $user_filter, $pager_count, $filters);

  $table = &$element['table'];
  unset($element['table']);

  $element['#theme']         = 'webform_confirm_email_results_submissions';
  $element['confirmed_form'] = drupal_get_form('webform_confirm_email_confirmed_filter_form');
  $element['table']          = &$table;

  return $element;

Version 7.x-1.3
Fatal error: Call to undefined function webform_results_download_submission_information() in /sites/all/modules/campaignion/campaignion_webform_results/campaignion_webform_results.module on line 44

// Prepend information fields with "-" to indent.
  foreach (webform_results_download_submission_information($node, array('type' => 'download')) as $key => $info) {
    $csv_components[$key] = '-' . $info['title'];
  }
  $csv_components += webform_component_list($node, 'csv', TRUE);

From phpadmin
SELECT *
FROM `webform_submitted_data`
LIMIT 0 , 30
Showing rows 0 - 29 (375 total, Query took 0.0641 sec)

campaignion_webform_results adjusts the CSV export of webform exports

Does this mean I can't access previous web submissions that were not using the flexible form module? I see that the flexible form module took over the machine name: webform. I'm testing the campaign on a dev site, and wanted to know if it was best to empty submission tables for campaignion to work properly, before migrating into production. I'm not working with a clean installation, and trying my best to migrate all the features properly. What I find interesting, is even tho on the site, it says no submissions, the pager is still at the bottom for 3 pages worth of submissions.

CommentFileSizeAuthor
#4 2292151.patch988 bytesnikunjkotecha

Comments

matthias_mo’s picture

I cannot reproduce your error, I just tested webform_confirm_email-7.x-1.3 against webform-7.x-3.20 on am minimal drupal installation and it works as expected.

matthias_mo’s picture

Status: Needs review » Postponed (maintainer needs more info)
matthias_mo’s picture

Status: Postponed (maintainer needs more info) » Closed (cannot reproduce)

Closing due to no activity.

nikunjkotecha’s picture

Version: 7.x-1.x-dev » 7.x-1.5
Category: Support request » Bug report
Status: Closed (cannot reproduce) » Needs work
StatusFileSize
new988 bytes

Able to reproduce the issue, attached patch to get it working.

  • matthias_mo committed fbfc317 on 7.x-1.x
    Fix for issue #2292151 reported by @OGPadmin with patch from @...
matthias_mo’s picture

Status: Needs work » Closed (fixed)

sorry for the late reaction, confirmed and commited patch of @nikunjkotecha, thanx, very much appreaciated.