witten
/
luminotes
Archived
1
0
Fork 0

Fixed bug where password reset form link was broken.

This commit is contained in:
Dan Helfman 2007-10-11 10:15:22 +00:00
parent 1875f1ed00
commit f1c55ffe9f
1 changed files with 2 additions and 2 deletions

View File

@ -197,7 +197,7 @@ class Notebooks( object ):
if notebook is None:
note = None
else:
note = self.__database.select_one( Notebook, notebook.sql_load_note_by_title( note_title ) )
note = self.__database.select_one( Note, notebook.sql_load_note_by_title( note_title ) )
return dict(
note = note,
@ -234,7 +234,7 @@ class Notebooks( object ):
if notebook is None:
note = None
else:
note = self.__database.select_one( Notebook, notebook.sql_load_note_by_title( note_title ) )
note = self.__database.select_one( Note, notebook.sql_load_note_by_title( note_title ) )
return dict(
note_id = note and note.object_id or None,