oups
This commit is contained in:
parent
837d83d6c4
commit
2241a67c95
1 changed files with 3 additions and 2 deletions
|
@ -161,14 +161,15 @@ class dcTranslater extends dcTranslaterDefaultSettings
|
||||||
);
|
);
|
||||||
while ($record->fetch()) {
|
while ($record->fetch()) {
|
||||||
if (preg_match('/^translater_(.*?)$/', $record->setting_id, $match)) {
|
if (preg_match('/^translater_(.*?)$/', $record->setting_id, $match)) {
|
||||||
$cur = dcCore::app()->con->openCursor(dcCore::app()->prefix . dcNamespace::NS_TABLE_NAME);
|
$cur = dcCore::app()->con->openCursor(dcCore::app()->prefix . dcNamespace::NS_TABLE_NAME);
|
||||||
$cur->setting_id = $this->$key = $match[1];
|
$cur->setting_id = $this->{$match[1]} = $match[1];
|
||||||
$cur->update(
|
$cur->update(
|
||||||
"WHERE setting_id = '" . $record->setting_id . "' and setting_ns = 'translater' " .
|
"WHERE setting_id = '" . $record->setting_id . "' and setting_ns = 'translater' " .
|
||||||
'AND blog_id ' . (null === $record->blog_id ? 'IS NULL ' : ("= '" . dcCore::app()->con->escape($record->blog_id) . "' "))
|
'AND blog_id ' . (null === $record->blog_id ? 'IS NULL ' : ("= '" . dcCore::app()->con->escape($record->blog_id) . "' "))
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue