Changeset 282

Show
Ignore:
Timestamp:
12/28/06 19:35:06 (2 years ago)
Author:
akiyan
Message:

fixed parseListOfTodo method.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/php-checkpad-api/Services_CheckPad/CheckPad.php

    r280 r282  
    8989        foreach ($match as $match_value) { 
    9090            $result[] = array( 
     91              'title' => trim($match_value[3]), 
    9192              'url'   => 'http://' . $this->checkpad_domain . trim($match_value[1]), 
    92               'title' => trim($match_value[2]), 
    93               'id'    => trim($match_value[3]), 
     93              'id'    => trim($match_value[2]), 
    9494              'left'  => trim($match_value[4]) 
    9595            );