From d43d661830ea1422160c2b80b02466dcad70e0cf Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 3 Nov 2011 08:10:28 +0530 Subject: [PATCH] Fix #885332 (Incorrent URL with --url-prefix) --- src/calibre/library/server/mobile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/library/server/mobile.py b/src/calibre/library/server/mobile.py index 0cb7a86126..a6b5c389de 100644 --- a/src/calibre/library/server/mobile.py +++ b/src/calibre/library/server/mobile.py @@ -156,7 +156,7 @@ def build_index(books, num, search, sort, order, start, total, url_base, CKEYS, body.append(HR()) body.append(DIV( A(_('Switch to the full interface (non-mobile interface)'), - href="/browse", + href=prefix+"/browse", style="text-decoration: none; color: blue", title=_('The full interface gives you many more features, ' 'but it may not work well on a small screen')),