summaryrefslogtreecommitdiff
path: root/database/database.pgsql
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2004-08-06 20:15:32 +0000
committerDries Buytaert <dries@buytaert.net>2004-08-06 20:15:32 +0000
commit9bbdb71ee4ccc1cf5433d8c21c8d96f668f81d2b (patch)
treecfdc8bbe28cf0bf27b269e743c263c9cb560083f /database/database.pgsql
parentf037130086076c5f652ca298f4c859f9f4d9fb6c (diff)
downloadbrdo-9bbdb71ee4ccc1cf5433d8c21c8d96f668f81d2b.tar.gz
brdo-9bbdb71ee4ccc1cf5433d8c21c8d96f668f81d2b.tar.bz2
- Patch #9330: ucfirst() gives problem when used with multibyte charset.
Replaced the use of ucfirst() with a CSS-based solution.
Diffstat (limited to 'database/database.pgsql')
-rw-r--r--database/database.pgsql2
1 files changed, 1 insertions, 1 deletions
diff --git a/database/database.pgsql b/database/database.pgsql
index d59fa6e6b..289a2e275 100644
--- a/database/database.pgsql
+++ b/database/database.pgsql
@@ -354,7 +354,7 @@ CREATE TABLE node_access (
grant_update smallint NOT NULL default '0',
grant_delete smallint NOT NULL default '0',
PRIMARY KEY (nid,gid,realm)
-);
+);
--