fixed import error with version is ignored.
This commit is contained in:
parent
e66981cd21
commit
5b25162baf
@ -36,7 +36,7 @@ due to [Automated Component Builder] (https://www.vdm.io/joomla-component-builde
|
|||||||
> (if creating a folder and file took **5 seconds** and writing one line of code took **10 seconds**,
|
> (if creating a folder and file took **5 seconds** and writing one line of code took **10 seconds**,
|
||||||
> never making one mistake or taking any coffee break.)
|
> never making one mistake or taking any coffee break.)
|
||||||
|
|
||||||
+ *Line count*: **48066**
|
+ *Line count*: **48060**
|
||||||
+ *File count*: **351**
|
+ *File count*: **351**
|
||||||
+ *Folder count*: **79**
|
+ *Folder count*: **79**
|
||||||
|
|
||||||
|
@ -508,7 +508,6 @@ class SermondistributorModelImport extends JModelLegacy
|
|||||||
// reset all buckets
|
// reset all buckets
|
||||||
$query = $db->getQuery(true);
|
$query = $db->getQuery(true);
|
||||||
$fields = array();
|
$fields = array();
|
||||||
$version = false;
|
|
||||||
// Fields to update.
|
// Fields to update.
|
||||||
foreach($row as $key => $cell)
|
foreach($row as $key => $cell)
|
||||||
{
|
{
|
||||||
@ -531,7 +530,6 @@ class SermondistributorModelImport extends JModelLegacy
|
|||||||
if ('version' == $target[$key])
|
if ('version' == $target[$key])
|
||||||
{
|
{
|
||||||
$cell = (int) $version + 1;
|
$cell = (int) $version + 1;
|
||||||
$version = true;
|
|
||||||
}
|
}
|
||||||
// verify publish authority
|
// verify publish authority
|
||||||
if ('published' == $target[$key] && !$canState)
|
if ('published' == $target[$key] && !$canState)
|
||||||
@ -556,10 +554,6 @@ class SermondistributorModelImport extends JModelLegacy
|
|||||||
// load the defaults
|
// load the defaults
|
||||||
$fields[] = $db->quoteName('modified_by') . ' = ' . $db->quote($user->id);
|
$fields[] = $db->quoteName('modified_by') . ' = ' . $db->quote($user->id);
|
||||||
$fields[] = $db->quoteName('modified') . ' = ' . $db->quote($todayDate);
|
$fields[] = $db->quoteName('modified') . ' = ' . $db->quote($todayDate);
|
||||||
if (!$version)
|
|
||||||
{
|
|
||||||
$fields[] = $db->quoteName('version') . " = " . (int) $version + 1;
|
|
||||||
}
|
|
||||||
// Conditions for which records should be updated.
|
// Conditions for which records should be updated.
|
||||||
$conditions = array(
|
$conditions = array(
|
||||||
$db->quoteName('id') . ' = ' . $id
|
$db->quoteName('id') . ' = ' . $id
|
||||||
|
Loading…
Reference in New Issue
Block a user