Page MenuHomePhabricator

Missing $ in DatabasePostgres.php
Closed, ResolvedPublic

Description

Author: robert

Description:
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


Version: 1.8.x
Severity: minor
OS: Linux

Details

Reference
bz8988

Event Timeline

bzimport raised the priority of this task from to Low.Nov 21 2014, 9:33 PM
bzimport set Reference to bz8988.
bzimport added a subscriber: Unknown Object (MLST).

leon wrote:

Fixed both in SVN trunk (r19929) and in tags REL1_9_2 and REL1_8_3 (r19930).
Thanks for the report.