Changeset 1477

Show
Ignore:
Timestamp:
12/09/2007 09:09:41 AM (13 months ago)
Author:
PugFish
Message:

Fixing the fix from r1476
Parameter needs to be optional for new Archive() syntax

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/system/libraries/Archive.php

    r1476 r1477  
    2424         * Throws: Kohana_Exception 
    2525         */ 
    26         public function __construct($type) 
     26        public function __construct($type = NULL) 
    2727        { 
    2828                $type = empty($type) ? 'zip' : $type;