Elxis CMS Forum

Support => General => Topic started by: rentasite on February 02, 2011, 05:33:16

Title: Youtube Bot / eBlog question -solved-
Post by: rentasite on February 02, 2011, 05:33:16
Is there a limit for the videos, that you can insert into an eblog item?

I have insert 6 videos. But i see only the first two of the videos. The rest are showing the {youtube}code{/youtube}

How can this be changed?  ::)
Title: Re: Youtube Bot / eBlog question
Post by: webgift on February 02, 2011, 10:00:32
Folder : components/com_eblog/
File : eblog.html.php
Line #: 343

You will find that :
$text = preg_replace_callback($regex, array('self', 'youTube_replacer'), $text, 2);

You should change the last argument of preg_replace_callback function to 6 like :
$text = preg_replace_callback($regex, array('self', 'youTube_replacer'), $text, 6);

;)
Title: Re: Youtube Bot / eBlog question
Post by: rentasite on February 02, 2011, 12:03:56



Thanks Stavro. I will change it.
Title: Re: Youtube Bot / eBlog question
Post by: webgift on February 02, 2011, 12:12:23
;).
Title: Re: Youtube Bot / eBlog question
Post by: rentasite on February 02, 2011, 12:31:25

- solved -