[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[ic] minor bug in UserDB.pm, formatting error?


Just something I noticed when looking through the source to help figure out how something works...

Around line 730 of UserDB.pm there is the following block of code:
                else {
                        ::logDebug( errmsg(
"cannot set unknown userdb field $_ to: %s",
                                                        $_,
                                                        $val,
                                                )
                                        );
                }


shouldn't that be either:
                else {
                        ::logDebug( errmsg(
"cannot set unknown userdb field $_ to: %s",
                                                        $val,
                                                )
                                        );
                }


...or:

                else {
                        ::logDebug( errmsg(
"cannot set unknown userdb field %s to: %s",
                                                        $_,
                                                        $val,
                                                )
                                        );
                }


Peter
_______________________________________________
interchange-users mailing list
suppressed
http://www.icdevgroup.org/mailman/listinfo/interchange-users


Mail converted by mhonarc 2.6.15
This archive provided courtesy of JSW4.NET, Internet Hosting Services for Small Business.