Skip to content
This repository was archived by the owner on Oct 29, 2025. It is now read-only.

Commit f3754c8

Browse files
committed
Merge pull request #37 from conclurer/AIOM-3.2.1
AIOM 3.2.1
2 parents e3a2e7d + cc77ebf commit f3754c8

3 files changed

Lines changed: 8 additions & 2 deletions

File tree

AllInOneMinify.module

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ class AllInOneMinify extends WireData implements Module, ConfigurableModule {
6868
// ------------------------------------------------------------------------
6969
// Version: major, minor, revision, i.e. 100 = 1.1.0
7070
// ------------------------------------------------------------------------
71-
'version' => 320,
71+
'version' => 321,
7272

7373
'author' => 'David Karich & Conclurer GbR',
7474

@@ -419,7 +419,7 @@ class AllInOneMinify extends WireData implements Module, ConfigurableModule {
419419

420420
// Support passing of $config->scripts as argument which is of type FilenameArray
421421
if(($javascripts instanceof FilenameArray))
422-
$stylesheets = (array) $javascripts->getIterator(); // Convert to array
422+
$javascripts = (array) $javascripts->getIterator(); // Convert to array
423423

424424
// ------------------------------------------------------------------------
425425
// Check if files exist and generating the cache file name based

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,11 @@ If you are currently in development of the site, caching can be a problem. For t
161161

162162
##Changelog##
163163

164+
3.2.1
165+
166+
* Bugfix: $config->scripts was not included properly
167+
* Support for @-webkit-keyframes added
168+
164169
3.2
165170

166171
* New CSS Compressor: AIOM now uses YUI Compressor (thanks to hwmaier)

lib/Less/Less.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2040,6 +2040,7 @@ private function parseDirective(){
20402040
$hasBlock = false;
20412041
break;
20422042
case "@keyframes":
2043+
case "@-webkit-keyframes":
20432044
$hasIdentifier = true;
20442045
break;
20452046
case "@host":

0 commit comments

Comments
 (0)