3
The lang definitions for xoops_version.php in the tutorial include the licence link:
$modversion['license_url'] = "www.gnu.org/licenses/gpl-2.0.html/";
but this gives a 404. You just need to lose the trailing slash from the URL.
Also, the cut-n-paste code for modinfo.php includes the following:
define _MI_XDIR__ADMENU2_DESC" , "Add/Edit Links");
define _MI_XDIR__ADMENU3_DESC" , "List New Links");
define _MI_XDIR__ADMENU4_DESC" , "List Broken Links");
define _MI_XDIR__ADMENU5_DESC" , "List Requested Modifications");
which are missing an opening bracket and double-quote, e.g.
define("_MI_XDIR__ADMENU5_DESC" , "List Requested Modifications");
Much as I hate to say it, this code also has... spaces, which will probably make Transifex scream like a girl.