Index: trunk/phase3/includes/api/ApiQueryLangLinks.php |
— | — | @@ -58,7 +58,7 @@ |
59 | 59 | $this->dieUsage("Invalid continue param. You should pass the " . |
60 | 60 | "original value returned by the previous query", "_badcontinue"); |
61 | 61 | $llfrom = intval($cont[0]); |
62 | | - $lllang = $this->getDb()->strencode($cont[1]); |
| 62 | + $lllang = $this->getDb()->addQuotes($cont[1]); |
63 | 63 | $this->addWhere("ll_from > $llfrom OR ". |
64 | 64 | "(ll_from = $llfrom AND ". |
65 | 65 | "ll_lang >= '$lllang')"); |