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.
| Comment | File | Size | Author |
|---|---|---|---|
| #4 | 2292151.patch | 988 bytes | nikunjkotecha |
Comments
Comment #1
matthias_mo commentedI 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.
Comment #2
matthias_mo commentedComment #3
matthias_mo commentedClosing due to no activity.
Comment #4
nikunjkotechaAble to reproduce the issue, attached patch to get it working.
Comment #6
matthias_mo commentedsorry for the late reaction, confirmed and commited patch of @nikunjkotecha, thanx, very much appreaciated.