On stats page I get error message:

Strict warning: Only variables should be passed by reference in _simpleads_stat_tab() (line 14 of /.../html/sites/all/modules/simpleads/simpleads.stat.inc).

Suggest to replace

$form_after_stats = drupal_render(drupal_get_form('_simpleads_after_stats_form'));

with following construct:

$form = drupal_get_form('_simpleads_after_stats_form');
$form_after_stats = drupal_render($form);

Ragnar

Comments

minnur’s picture

Assigned: Unassigned » minnur
Status: Active » Needs review

Thanks for this, I think this was already fixed in the dev version

joshuautley’s picture

I can confirm this works.

minnur’s picture

Issue summary: View changes
Status: Needs review » Closed (won't fix)