Menu

#6 Not all underscores removed.

open
nobody
5
2002-05-17
2002-05-17
dhoov
No

Hi. With version 1.1 of dbengine, my tables
which have multiple underscores were displayed
with funny titles like
Summary Fund_cv
instead of
Summary Fund Cv

I made fixes in base.pl for dbengine 1.1, and then
realized that the CVS code has been completely
rewritten (looks much better structured, compared to 1.1).

I think you should be able to apply these changes
without any problem to your new code, although I
haven't tried it:

sub CreateMenu() of base.pl version 1.10 (CVS):
Change
$disp_tablename =~ s/\W|_/ /o;
$disp_tablename =~ s/\W|_/ /o;
to
$disp_tablename =~ s/\W|_/ /go;
$disp_tablename =~ s/\W|_/ /go;

Thanks,

Dave.

Discussion


Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.