diff options
author | Robert Newson <robert.newson@gmail.com> | 2010-10-21 13:16:20 -0400 |
---|---|---|
committer | Adam Kocoloski <adam@cloudant.com> | 2010-10-21 13:18:50 -0400 |
commit | d5c8c3ccdf5fcd29dd9bc8996d2d21b6146c063c (patch) | |
tree | 0ad46cd61c254519e0a107841e6df75369c14902 /apps | |
parent | 79cae8f107476d1c5a2999128b081e898dcd15ae (diff) |
fix temp_view undef.
Diffstat (limited to 'apps')
-rw-r--r-- | apps/chttpd/src/chttpd.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/chttpd/src/chttpd.erl b/apps/chttpd/src/chttpd.erl index 37dc12d9..4d3425b2 100644 --- a/apps/chttpd/src/chttpd.erl +++ b/apps/chttpd/src/chttpd.erl @@ -189,7 +189,7 @@ db_url_handlers() -> {<<"_view_cleanup">>, fun chttpd_db:handle_view_cleanup_req/2}, {<<"_compact">>, fun chttpd_db:handle_compact_req/2}, {<<"_design">>, fun chttpd_db:handle_design_req/2}, - {<<"_temp_view">>, fun chttpd_db:handle_temp_view_req/2}, + {<<"_temp_view">>, fun chttpd_view:handle_temp_view_req/2}, {<<"_changes">>, fun chttpd_db:handle_changes_req/2}, {<<"_search">>, fun chttpd_external:handle_search_req/2} ]. |