Skip to content

Commit

Permalink
Merge pull request #896 from dreamsxin/1.2.1
Browse files Browse the repository at this point in the history
Fix bug #821 and #811 Minifier: No output at all
  • Loading branch information
niden committed Jul 23, 2013
2 parents 3fd3c42 + 822644b commit 2a3dcb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/assets/manager.c
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,7 @@ PHP_METHOD(Phalcon_Assets_Manager, output){
* If the collection must not be joined we must print a HTML for each one
*/
if (Z_TYPE_P(filters) == IS_ARRAY) {
if (!zend_is_true(join)) {
if (zend_is_true(join)) {
if (zend_is_true(local)) {

/**
Expand Down

0 comments on commit 2a3dcb9

Please sign in to comment.