File tree 2 files changed +5
-2
lines changed
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 4
4
5
5
- BugFix:
6
6
- Fehler in der Namespace-Unterstützung (Dateistruktur, Cronjob-Registrierung) bereinigt.
7
+ - behebt [ #143 ] ( https://github.com/FriendsOfREDAXO/geolocation/issues/143 ) (@tyrant88 )
7
8
8
9
## 25.06.2023 2.1.2
9
10
Original file line number Diff line number Diff line change 3
3
* AssetPacker - Support für REDAXO-Addons
4
4
*
5
5
* @author Christoph Böcker <https://github.com/christophboecker/>
6
- * @version 1.3.3
6
+ * @version 1.3.4
7
7
* @copyright Christoph Böcker
8
8
* @license Die AssetPacker-Klassen: MIT-License <https://opensource.org/licenses/MIT>
9
9
* Die JS-Minifier-Klasse: BSD 3-Clause License <https://github.com/tedivm/JShrink/blob/master/LICENSE>
@@ -461,7 +461,9 @@ public function minify( string $content ) : string
461
461
public function getTag ( string $ media = 'all ' ) : string
462
462
{
463
463
// Pathname relativ zu rex_path
464
- $ asset = \rex_url::base ( \rex_path::relative ( $ this ->target ) );
464
+ // für Windows: \ in / ändern
465
+ $ asset = str_replace ('\\' ,'/ ' ,\rex_path::relative ( $ this ->target ));
466
+ $ asset = \rex_url::base ( $ asset );
465
467
466
468
if (!\rex::isDebugMode () && \rex::isBackend () && $ this ->timestamp )
467
469
{
You can’t perform that action at this time.
0 commit comments