diff options
author | Struan Donald <struan@exo.org.uk> | 2011-07-25 21:00:11 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2011-07-25 21:00:11 +0100 |
commit | bd5bc648aadd62d45a3a4117aa280d0ba7f5f755 (patch) | |
tree | e68aa71c56127d430ae95d0f1cf8ba6c31fd338a /perllib/FixMyStreet/App/Controller/Admin.pm | |
parent | 85745e3d59689af171abc3fbe98ef8d9e5f10e88 (diff) | |
parent | c916094412f4eacfb1a56a0d9bb00e15f53ab253 (diff) |
Merge branch 'master' of ssh://git.mysociety.org/data/git/public/fixmystreet into lichfield-cobrand
Diffstat (limited to 'perllib/FixMyStreet/App/Controller/Admin.pm')
-rw-r--r-- | perllib/FixMyStreet/App/Controller/Admin.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/perllib/FixMyStreet/App/Controller/Admin.pm b/perllib/FixMyStreet/App/Controller/Admin.pm index fbd50a973..3f2b62f6f 100644 --- a/perllib/FixMyStreet/App/Controller/Admin.pm +++ b/perllib/FixMyStreet/App/Controller/Admin.pm @@ -121,6 +121,7 @@ sub timeline : Path( 'timeline' ) : Args(0) { my %time; $c->model('DB')->schema->storage->sql_maker->quote_char( '"' ); + $c->model('DB')->schema->storage->sql_maker->name_sep( '.' ); my $probs = $c->cobrand->problems->timeline; @@ -427,6 +428,7 @@ sub search_reports : Path('search_reports') { # makes PostgreSQL unhappy elsewhere so we only want to do # it for this query and then switch it off afterwards. $c->model('DB')->schema->storage->sql_maker->quote_char( '"' ); + $c->model('DB')->schema->storage->sql_maker->name_sep( '.' ); my $problems = $c->cobrand->problems->search( { |