diff options
author | Sarven Capadisli <csarven@status.net> | 2009-11-18 12:18:03 +0000 |
---|---|---|
committer | Sarven Capadisli <csarven@status.net> | 2009-11-18 12:18:03 +0000 |
commit | 0ae7a1df6e6520d513a93f8f8123015325be1260 (patch) | |
tree | 8b8647119e06e78afa623cd67e15dea595658481 | |
parent | 1c1c9ccc2a553587115969b460e0e444ef33fe1e (diff) | |
parent | d1d104bde2779a9373a07d3046bda0e129c6b309 (diff) |
Merge branch '0.9.x' of git@gitorious.org:statusnet/mainline into 0.9.x
-rw-r--r-- | README | 6 | ||||
-rw-r--r-- | db/statusnet_pg.sql | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -852,6 +852,12 @@ locale_path: full path to the directory for locale data. Unless you store all your locale data in one place, you probably don't need to use this. language: default language for your site. Defaults to US English. + Note that this is overridden if a user is logged in and has + selected a different language. It is also overridden if the + user is NOT logged in, but their browser requests a different + langauge. Since pretty much everybody's browser requests a + language, that means that changing this setting has little or + no effect in practice. languages: A list of languages supported on your site. Typically you'd only change this if you wanted to disable support for one or another language: diff --git a/db/statusnet_pg.sql b/db/statusnet_pg.sql index d4b7b6614..8dbaf8598 100644 --- a/db/statusnet_pg.sql +++ b/db/statusnet_pg.sql @@ -576,6 +576,6 @@ create table login_token ( created timestamp not null DEFAULT CURRENT_TIMESTAMP /* comment 'date this record was created'*/, modified timestamp /* comment 'date this record was modified'*/, - constraint primary key (user_id) + primary key (user_id) ); |