Changeset 18855


Ignore:
Timestamp:
11/30/12 17:19:24 (11 years ago)
Author:
obi
Message:

fix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • titan/titan/mediadb.h

    r18854 r18855  
    526526        if(title == NULL) title = file;
    527527
    528         id = stringreplacechar(id, '#', ' ');
    529         title = stringreplacechar(title, '#', ' ');
     528        id = string_newline(stringreplacechar(id, '#', ' '));
     529        title = string_newline(stringreplacechar(title, '#', ' '));
    530530        year = stringreplacechar(year, '#', ' ');
    531531        released = stringreplacechar(released, '#', ' ');
     
    541541        path = stringreplacechar(path, '#', ' ');
    542542        file = stringreplacechar(file, '#', ' ');
    543         shortname = stringreplacechar(shortname, '#', ' ');
    544         fileinfo = stringreplacechar(fileinfo, '#', ' ');
     543        shortname = string_newline(stringreplacechar(shortname, '#', ' '));
     544        fileinfo = string_newline(stringreplacechar(fileinfo, '#', ' '));
    545545       
    546546        tmpstr = ostrcat(tmpstr, id, 1, 0);
     
    584584        tmpstr = ostrcat(tmpstr, oitoa(flag), 1, 1);
    585585
     586printf("tmpstr: %s\n");
    586587        if(update != NULL)
    587588        {
Note: See TracChangeset for help on using the changeset viewer.