diff options
author | Doug Kearns <dougkearns@gmail.com> | 2009-09-14 23:49:19 +1000 |
---|---|---|
committer | Doug Kearns <dougkearns@gmail.com> | 2009-09-15 13:20:04 +1000 |
commit | 66f86d2da43c63f3f570c16ce7e7fe7d724728e2 (patch) | |
tree | fa4f6d7a4b4220fb37036e8732a748f23f310c0f /common | |
parent | e267bc9c173432bb5474fd5a990c13e2c945f5b5 (diff) | |
download | pentadactyl-66f86d2da43c63f3f570c16ce7e7fe7d724728e2.tar.gz |
Don't mark quickmarks as private data.
Quickmarks are essentially bookmarks and Firefox doesn't consider these
private data.
Diffstat (limited to 'common')
-rw-r--r-- | common/content/bookmarks.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/content/bookmarks.js b/common/content/bookmarks.js index 6e406605..1bd0e22a 100644 --- a/common/content/bookmarks.js +++ b/common/content/bookmarks.js @@ -1100,7 +1100,7 @@ function QuickMarks() //{{{ ////////////////////// PRIVATE SECTION ///////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////{{{ - var qmarks = storage.newMap("quickmarks", true, { privateData: true }); + var qmarks = storage.newMap("quickmarks", true); /////////////////////////////////////////////////////////////////////////////}}} ////////////////////// MAPPINGS //////////////////////////////////////////////// |