Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion administrator/components/com_admin/script.php
Original file line number Diff line number Diff line change
Expand Up @@ -2350,7 +2350,9 @@ protected function fixFilenameCasing()
}
} else {
// On Unix with both files: Delete the incorrectly cased file.
File::delete(JPATH_ROOT . $old);
if (is_file(JPATH_ROOT . $old)) {
File::delete(JPATH_ROOT . $old);
}
}
}
}
Expand Down
3 changes: 3 additions & 0 deletions libraries/src/Updater/Adapter/ExtensionAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@
*/
class ExtensionAdapter extends UpdateAdapter
{
protected $currentUpdate;
protected $latest;

/**
* Start element parser callback.
*
Expand Down
5 changes: 5 additions & 0 deletions libraries/src/Updater/Update.php
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,11 @@ class Update
* @since 3.10.2
*/
protected $compatibleVersions = [];
protected $downloadurl;
protected $tag;
protected $stability;
protected $supported_databases;
protected $php_minimum;

/**
* Gets the reference to the current direct parent
Expand Down