Hi,
When I installed the module, I could not manage it. there was always a bunch of text-lines displayed in the browser. The same when I tried to create a simple poll (that's what I'm interested in).
When I displayed the source of the page in the browser I saw some functions-code. I found out it was the source of one of the inc-files of the module. The first line was <?. I thought it should be <?php and modified this and then the text-lines went away, but when I created a poll, I could not "vote", there was no name-box to fill in and no choices.
Any help ?
I'm running drupal on OpenSuse 10.3, drupal 6.12 (I'll be upgrading to 6.13 shortly, it's an intranet-site).
Regards,
Koenraad Lelong.

CommentFileSizeAuthor
#3 525186.patch623 bytessimon georges

Comments

fudokai’s picture

I'm having similar problems, MakeMeeting is unusable as it cannot be managed.

Admin -> Settings -> Makemeeting is just displaying a bundle of php code, ie. ...

'fieldset', '#title' => t('E-mail sending options'), '#tree' => TRUE, ); $options = array('1' => t('Enabled'), '0' => t('Disabled')); $form['send_email']['enable'] = array( '#type' => 'radios', '#title' => t('Enable e-mail sending function'), '#default_value' => variable_get('makemeeting_send_email_enabled', '1'), '#options' => $options, '#description' => t('If you choose yes, then the users can send e-mails to their friends with the link of the poll.'), ); $form['submit'] = array( '#type' => 'submit', '#value' => t('Save') ); return $form; } /** * makemeeting_admin_form_submit() * * @return void */ function makemeeting_admin_form_submit($form, &$form_state){ variable_set("makemeeting_send_email_enabled", $form['submit']['#post']['send_email']['enable']); }

This is because makemeeting.admin.inc uses <? instead of <?php, I've tried Koenraad's fix to get it to work but this same error is in other .inc files

  • makemeeting.admin.inc
  • makemeeting.pages.inc

Saving dates to the list doesn't work, so scheduling a meeting shows only the title.

That's enough bugs for the moment - I'll try and see if I can find another module to do what I want

Alan
System configuration: openSUSE 11.1, Drupal 6.13, MakeMeeting 6.x-1.0, Firefox 3.5.1

simon georges’s picture

Category: support » bug
Priority: Normal » Critical

Changing the status to critical, as the module does not work at all if you're encounting the problem, classifying it as "bug report".
I'll provide a patch later today.

simon georges’s picture

Status: Active » Needs review
StatusFileSize
new623 bytes

Please find attached the patch mentionned above (fixing <? into <?php).

As I cannot reproduce the bug, I have no idea if the patch fixes everything, so don't hesitate to report back on this issue.

Regards,

SebCorbin’s picture

Patched.

SebCorbin’s picture

Status: Needs review » Closed (fixed)