Index: trunk/extensions/CodeReview/backend/Subversion.php |
— | — | @@ -322,6 +322,7 @@ |
323 | 323 | function getDiff( $path, $rev1, $rev2 ) { |
324 | 324 | return $this->_proxy( array( |
325 | 325 | 'action' => 'diff', |
| 326 | + 'base' => $this->mRepo, |
326 | 327 | 'path' => $path, |
327 | 328 | 'rev1' => $rev1, |
328 | 329 | 'rev2' => $rev2 ) ); |
— | — | @@ -330,6 +331,7 @@ |
331 | 332 | function getLog( $path, $startRev = null, $endRev = null ) { |
332 | 333 | return $this->_proxy( array( |
333 | 334 | 'action' => 'log', |
| 335 | + 'base' => $this->mRepo, |
334 | 336 | 'path' => $path, |
335 | 337 | 'start' => $startRev, |
336 | 338 | 'end' => $endRev ) ); |
— | — | @@ -338,6 +340,7 @@ |
339 | 341 | function getDirList( $path, $rev = null ) { |
340 | 342 | return $this->_proxy( array( |
341 | 343 | 'action' => 'list', |
| 344 | + 'base' => $this->mRepo, |
342 | 345 | 'path' => $path, |
343 | 346 | 'rev' => $rev ) ); |
344 | 347 | } |