Last modified: 2010-05-15 15:42:51 UTC
While installing I got the strange errormessage: "Please make sure that the locale in pg_ts_cfg for "default" is set to "ctype" I tracked it down to the follwing line in includes/DatabasePostgres.php: print "Please make sure that the locale in pg_ts_cfg for \"default\" is set to \"ctype\"</li>\n"; Looks like a $ is missing here - therefore ctype is a variable. The corrected line is: print "Please make sure that the locale in pg_ts_cfg for \"default\" is set to \"$ctype\"</li>\n"; Location: includes/DatabasePostgres.php on line 277
Fixed both in SVN trunk (r19929) and in tags REL1_9_2 and REL1_8_3 (r19930). Thanks for the report.