When text link ads integration is enabled, navigating to this admin/by-module page produces this error
Fatal error: Unsupported operand types in /var/www/includes/common.inc on line 1265
| Comment | File | Size | Author |
|---|---|---|---|
| #5 | textlinkadd_drupal_296677.patch | 2.99 KB | chantra |
Comments
Comment #1
gregglesI can't reproduce this bug.
Comment #2
asimmonds commentedPossibly duplicate with #268751: admin/by-module does not display with TLA (another report of a similar problem #352116: Fatal Error When Help Link is Clicked)
Comment #3
bryansd commentedI'm seeing close to the same thing...though slightly different.
Fatal error: Unsupported operand types in ~/public_html/includes/common.inc on line 1369I agree this is likely a duplicate of http://drupal.org/node/268751 , but since that ticket is closed this seems logical to continue on this issue. I'm running Drupal 6.8 on PHP 5.2.8.
Comment #4
ryan_courtnage commentedDrupal 6.16.
Just installed TLA module. Hitting admin/by-module results in:
line 1426 is the url() function right where it tries to merge the $options parameter with the defaults.
Problem is on line 26 of textlinkads.module
That "url(t('clicking this link'), 'cron.php')" should be "l(t('clicking this link'), 'cron.php')"
cheers
Comment #5
chantra commentedcomment #4 makes it work.
I attach the patch so it might make it easier to apply the change.
Comment #6
pluginstla_chris commented