Changeset 74 in bookmarks for trunk/lib/Bookmarks
- Timestamp:
- 04/11/14 09:46:16 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/Bookmarks/Controller.pm
r71 r74 149 149 } 150 150 } else { 151 return [404, ['Content-Type' => 'text/plain; charset=UTF-8'], ["Boo mark $id not found"]];151 return [404, ['Content-Type' => 'text/plain; charset=UTF-8'], ["Bookmark $id not found"]]; 152 152 } 153 153 } … … 170 170 return [200, ['Content-Type' => 'text/plain; charset=UTF-8', 'Last-Modified' => $last_modified], [ref $value eq 'ARRAY' ? join(' ', @{ $value }) : $value]]; 171 171 } else { 172 return [404, ['Content-Type' => 'text/plain; charset=UTF-8'], ["Boo mark $id not found"]];172 return [404, ['Content-Type' => 'text/plain; charset=UTF-8'], ["Bookmark $id not found"]]; 173 173 } 174 174 } … … 208 208 return [303, ['Location' => $bookmark->bookmark_uri->canonical], []]; 209 209 } else { 210 return [404, ['Content-Type' => 'text/plain; charset=UTF-8'], ["Boo mark $id not found"]];210 return [404, ['Content-Type' => 'text/plain; charset=UTF-8'], ["Bookmark $id not found"]]; 211 211 } 212 212 }
Note: See TracChangeset
for help on using the changeset viewer.