Changeset 989

Show
Ignore:
Timestamp:
12/05/07 17:09:05 (1 year ago)
Author:
samtay
Message:

Added PackList XML Render

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • sandbox/appdb/system/application/controllers/uploadwdi.php

    r982 r989  
    117117        $this->load->model('applicationdb', '', TRUE); 
    118118         
    119         echo '<pre>'; 
    120         print_r($this->applicationdb->getRepoAppXml(1)); 
    121         echo '</pre>'; 
     119        $data = array(); 
     120        $data['packList'] = $this->applicationdb->getRepoAppXml(1); 
     121        $this->load->view('packlist_xml', $data); 
     122         
     123        //echo '<pre>'; 
     124        //print_r($this->applicationdb->getRepoAppXml(1)); 
     125        //echo '</pre>'; 
    122126        } 
    123127}