Closed (fixed)
Project:
Video
Version:
4.7.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
29 Jan 2007 at 11:39 UTC
Updated:
7 May 2010 at 15:29 UTC
Teaser does not read input format.
It ignores e.g. the
tag when entered in description.
Comments
Comment #1
StuartMackenzie commentedI also had this problem, I'm definately no php whizz but managed to fix this after spending an hour or two tearing out my hair and looking thru api docs (which all read gibberish to me), i don't know enough to submit a patch but to fix for me.
There was a function around line 710 which I altered very slightly so it now reads as follows.
I have no idea if this is the 'right' approach but it certainly worked for me and hope it works for someone else, or someone with more knowledge can incorporate it into the module or provide a patch.
Comment #2
fax8 commentedyou have patched against an older version of the video module.
Please adapt it to the latest version of 4.7 or (better 5.x)
Thanks.
Comment #3
StuartMackenzie commentedok my apologies, I'm using drupal 5 and the module shows as being version HEAD (I downaloded it some time ago-but only just started using), I'll shall get the latest 5 developer snapshot version and If I'm still experiencing the bug will try and submit a proper patch, Sry! still finding my feet and proper protocol!
Comment #4
mark matuschka commentedActually this line can be removed entirely because node_prepare() has already done the assignment and this overwrites it (in v5 anyway):
$node->content['body'] = array('#value' => $node->body);Comment #5
iLLin commented