Return ALL organisations when fetching PRs

When listing the pull-requests to import, we need to make sure
that private organisations are listed too.

Change-Id: I3c8a71399d86bba43dae64e6989ba86d36a4eeec
diff --git a/github-plugin/src/main/resources/static/pullrequests.html b/github-plugin/src/main/resources/static/pullrequests.html
index 158a560..73af88f 100644
--- a/github-plugin/src/main/resources/static/pullrequests.html
+++ b/github-plugin/src/main/resources/static/pullrequests.html
@@ -41,7 +41,7 @@
               <li>
                 <select id="organisation" name="organisation">
                   <option selected="selected">$myself.login</option>
-                  #foreach( $organisation in $myself.organizations )
+                  #foreach( $organisation in $myself.allOrganizations )
                     #if ( $request.getParameter("organisation") == $organisation.login )
                       <option selected="selected">$organisation.login</option>
                     #else