Skip to content

Commit

Permalink
wip correcitons
Browse files Browse the repository at this point in the history
  • Loading branch information
astridx committed Apr 22, 2022
1 parent a75a636 commit 26ac4b1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions aggpxtrack-update4.xml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
<maintainer>Astrid Günther</maintainer>
<maintainerurl>https://astrid-guenther.de</maintainerurl>
<targetplatform name="joomla" version="4.*"/>
<sha256>92e6e78842ac23b606ab28c01da1b8ea5528015e8e14e2de912059fe3685d3fb</sha256>
<sha384>1752443de46e05dd9e18a134075590f4fc33d862a33595a3c15629566110e55e1e7076e0cff2816f6901d1ffe51c949e</sha384>
<sha256>754989077dd0aa7294c23d3244062ad5677affab7e84458efd7125a632a9f113</sha256>
<sha384>07db5ef8ba1d44603b9ca6c1a3ed6a3404123eff40f11779b3a1b7857fea0684b932057157eecab00b0b1c236bb137dc</sha384>
</update>
</updates>
2 changes: 1 addition & 1 deletion j4/pkg_aggpxtrack/jorobo.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
extension = aggpxtrack
version = 4.0.5
version = 4.0.4
source = src
target = package

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,11 @@

$value_raw = $field->value;

$value = (array) substr($value_raw, 0, strpos($value_raw, '#joomlaImage:'));
$value = (array) $value_raw;

if (str_contains($value_raw, '#joomlaImage:')) {
$value = (array) substr($value_raw, 0, strpos($value_raw, '#joomlaImage:'));
}

$buffer = '';

Expand Down

0 comments on commit 26ac4b1

Please sign in to comment.