Commit e25e877e authored by Jez Ng's avatar Jez Ng
Browse files

Bug 440098 - Bookmarks opened via "Open All in Tabs" should not replace current tab. r=mak

parent 8601425c
Loading
Loading
Loading
Loading
+4 −2
Original line number Original line Diff line number Diff line
@@ -812,8 +812,10 @@ var PlacesUIUtils = {
    }
    }


    var loadInBackground = where == "tabshifted" ? true : false;
    var loadInBackground = where == "tabshifted" ? true : false;
    var replaceCurrentTab = where == "tab" ? false : true;
    // For consistency, we want all the bookmarks to open in new tabs, instead
    browserWindow.gBrowser.loadTabs(urls, loadInBackground, replaceCurrentTab);
    // of having one of them replace the currently focused tab.  Hence we call
    // loadTabs with aReplace set to false.
    browserWindow.gBrowser.loadTabs(urls, loadInBackground, false);
  },
  },


  /**
  /**