Index: pkg/items/sysbook/book/methods.src =================================================================== --- pkg/items/sysbook/book/methods.src (revision 1237) +++ pkg/items/sysbook/book/methods.src (working copy) @@ -80,13 +80,27 @@ endfunction exported function GetTitle(book) - //One line. Looks for a property called "Title". - return CStr(GetInfo(book, "Title")); + //Looks for a property called "Title". + //If not set, converts the false to "". + var title := GetInfo(book, "Title"); + + if (!title) + title := ""; + endif + + return title; endfunction exported function GetAuthor(book) - //One line. :ooks for a property called "Author". - return CStr(GetInfo(book, "Author")); + //:ooks for a property called "Author". + //If not set, converts the false to "". + var author := GetInfo(book, "Author"); + + if (!author) + author := ""; + endif + + return author; endfunction exported function GetLine(book, line_num)