69
News 1.67 RC3 and Xoops 2.5.51- TyposThe typos which you
corrected,
returned :
Quote:
replace
// Added in verisn 1.50
with
// Added in version 1.50
Line 195
replace
// Added in verisn 1.67
with
// Added in version 1.67
2- Errors => modules/news/submit.php (when I preview)
Undefined variable: subtitle in file /modules/news/include/storyform.inc.php - line 43
(you however corrected it before)
=> Images of articles do not download
=> The module does not validate the change of editor (eg TinyMCE)
3- ModificationsTo display the "title" as it should :
in news\article.php
line 303 and 304
add :
$xoopsTpl->assign('lang_delete', _NW_DELETE);
$xoopsTpl->assign('lang_edit', _NW_EDIT);
and in news\templates\news_article.html
Line 6 and 7
modify :
<a href="<{$xoops_url}>/modules/news/submit.php?op=edit&storyid=<{$story.id}>"><img src="<{xoModuleIcons16 edit.png}>" title="NW_EDIT">a>
<a href="<{$xoops_url}>/modules/news/admin/index.php?op=delete&storyid=<{$story.id}>"><img src="<{xoModuleIcons16 delete.png}>" title="._NW_DELETE.">a>
with :
<a href="<{$xoops_url}>/modules/news/submit.php?op=edit&storyid=<{$story.id}>"><img src="<{xoModuleIcons16 edit.png}>" title="<{$lang_edit}>">a>
<a href="<{$xoops_url}>/modules/news/admin/index.php?op=delete&storyid=<{$story.id}>"><img src="<{xoModuleIcons16 delete.png}>" title="<{$lang_delete}>">a>