Hi Lyften - What a great and feature rich extension! Kudos.
Noticed some errors related to deprecated functions in PHP 5.3.x
In administration/Dashboard it gives a deprecated error for split() administrator\components\com_lyftenbloggie\libraries\magpierss\rss_parse.inc on line 153
list($ns, $el) = split( ':', $element, 2);
Change to preg_split or explode?
list($ns, $el) = explode( ':', $element, 2); (works)
In frontend blog main view it gives a deprecated error for ereg_replace()
components\com_lyftenbloggie\helpers\helper.php on line 472
$link = ereg_replace('^-','', $link);
Change to preg_replace or str_replace?
$link = str_replace('^-','', $link); (works)
Those above errors obviously not are shown when switching to PHP 5.2.x
Then there was a js error when trying to save new category in backend.
Meddelelse: 'tinyMCE.get(...)' er null eller ikke et objekt
Linje: 198
Tegn: 3 Kode: 0
URI: http://localhost/1515test/administrator/index.php
PS.: When writing this forum entry, using IE8, I had to first choose hmtl source, because for some reason text field
not active for that browser.
Keep up the good work. Quite impressive first release.


