Subversion Repositories oidplus

Compare Revisions

Regard whitespace Rev 1147 → Rev 1148

/trunk/plugins/viathinksoft/publicPages/200_viathinksoft_freeoid/OIDplusPagePublicFreeOID.class.php
46,7 → 46,8
* @throws OIDplusException
*/
public static function alreadyHasFreeOid(string $email, bool $getId = false)/*: ?bool*/ {
$res = OIDplus::db()->query("select id from ###objects where ra_email = ? and id like ? order by ".OIDplus::db()->natOrder('id'), array($email, self::getFreeRootOid(true).'.%'));
$res = OIDplus::db()->query("select id from ###objects where ra_email = ? and id like ?", array($email, self::getFreeRootOid(true).'.%'));
$res = new OIDplusNaturalSortedQueryResult($res, 'id');
if ($row = $res->fetch_array()) {
return $getId ? $row['id'] : true;
}
369,7 → 370,8
* @throws OIDplusException
*/
protected static function freeoid_max_id(): int {
$res = OIDplus::db()->query("select id from ###objects where id like ? order by ".OIDplus::db()->natOrder('id'), array(self::getFreeRootOid(true).'.%'));
$res = OIDplus::db()->query("select id from ###objects where id like ?", array(self::getFreeRootOid(true).'.%'));
$res = new OIDplusNaturalSortedQueryResult($res, 'id');
$highest_id = 0;
while ($row = $res->fetch_array()) {
$arc = substr_count(self::getFreeRootOid(false), '.')+1;