Index: trunk/phase3/includes/api/ApiBase.php |
— | — | @@ -1499,6 +1499,13 @@ |
1500 | 1500 | } |
1501 | 1501 | |
1502 | 1502 | /** |
| 1503 | + * @return DatabaseBase |
| 1504 | + */ |
| 1505 | + public function getDB() { |
| 1506 | + return wfGetDB( DB_SLAVE, 'api' ); |
| 1507 | + } |
| 1508 | + |
| 1509 | + /** |
1503 | 1510 | * Debugging function that prints a value and an optional backtrace |
1504 | 1511 | * @param $value mixed Value to print |
1505 | 1512 | * @param $name string Description of the printed value |