8
Hi, to upgrade the module removing the deprecated functions,watching the code, is easy.
You have modified field icq to facebook, default characters to field icq are 15.
You must modify this value in your database.
In my local copy, number ip don't saved in database.
I modify the file sign.php line 95:
$ip=$GLOBALS['REMOTE_ADDR'];
to
$ip=$_SERVER['REMOTE_ADDR'];
and to display ip in icon server you must modify "alt" to "title" in tag img...
change your code at line 151 (index.php) with:
if ($xoopsUser && $xoopsUser->isAdmin($xoopsModule->mid())) {
$entry[$i]['admin_option'] = "<p align='right'><img src='images/ip.gif' title='".$array_total_entry[$i]["ip"]."' /><a href='admin/index.php?op=editEntry&id=".$array_total_entry[$i]["id"]."'> <img src='images/edit.gif' alt='"._NAR_EDIT."' border='0' /></a><a href='admin/index.php?op=delEntry&id=".$array_total_entry[$i]["id"]."'> <img src='images/del.gif' alt='"._NAR_DELETEPOST."' border='0' /></a></p>";
}
if you want view directly the number ip without icon server, change with:
if ($xoopsUser && $xoopsUser->isAdmin($xoopsModule->mid())) {
$entry[$i]['admin_option'] = "<p align='right'>".$array_total_entry[$i]["ip"]."<a href='admin/index.php?op=editEntry&id=".$array_total_entry[$i]["id"]."'> <img src='images/edit.gif' alt='"._NAR_EDIT."' border='0' /></a><a href='admin/index.php?op=delEntry&id=".$array_total_entry[$i]["id"]."'> <img src='images/del.gif' alt='"._NAR_DELETEPOST."' border='0' /></a></p>";
}