Closed (fixed)
Project:
Inline and link Drupal objects (Linodef)
Version:
6.x-1.x-dev
Component:
WYSIWYG
Priority:
Minor
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
24 Feb 2010 at 10:20 UTC
Updated:
15 Mar 2010 at 14:30 UTC
Tiny error still exists in /linodef/modules/linodef_wysiwyg/plugins/linodef_taglist.inc on line 18
18. foreach ($taglists as $tlid => $taglist) {
This returns an error when $taglists is empty.
Should have
18. if ($taglists) {
19. foreach ($taglists as $tlid => $taglist) {
Comments
Comment #1
Roi Danton commentedThanks, committed.