Skip to content

Commit

Permalink
Update version 2.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
trinhvanduong committed Dec 1, 2023
1 parent 1a16b09 commit 90c2114
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions README.md
Expand Up @@ -16,6 +16,10 @@ Demo: http://demo.tzportfolio.com/

*** Changelog ***

01/12/2023 - 2.7.0

- Fix issue js edit row setting of layout builder with Joomla 4 & Joomla 5

20/10/2023 - 2.6.9

- Fix issue DatabaseDriver of v2.6.8 with Joomla 3
Expand Down
2 changes: 1 addition & 1 deletion setup/index.php
Expand Up @@ -195,7 +195,7 @@
$group = posix_getpwuid(filegroup($file->path));

$file->owner = $owner['name'];
$file->group = $group['name'];
$file->group = !empty($group) && is_array($group)?$group['name']:'';
$file->permissions = substr(decoct(fileperms($file->path)), 1);
}
}
Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion tz_portfolio_plus.xml
Expand Up @@ -19,7 +19,7 @@
<youtubeUrl>https://www.youtube.com/channel/UCrLN8LMXTyTahwDKzQ-YOqg/videos</youtubeUrl>
<tokenUrl>https://www.tzportfolio.com/blog/how-to-activate-tz-portfolio-pro.html</tokenUrl>
<freelicenseUrl>https://www.tzportfolio.com/component/tz_envato_license/licenses.html</freelicenseUrl>
<version>2.6.9</version>
<version>2.7.0</version>

<scriptfile>script.php</scriptfile>

Expand Down

0 comments on commit 90c2114

Please sign in to comment.