Changeset 255 for trunk/docs


Ignore:
Timestamp:
May 9, 2007 3:05:49 AM (17 years ago)
Author:
jordan
Message:

Bugs fixed via Jordan.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/docs/codebase_v1-to-v2_upgrade_checklist.txt

    r239 r255  
    3535    "{$cfg['gallery_images_url']}/my/path".
    3636   
    37 If the value used is now to be retreived from a $object->getParam(...) method call, you'll need to do this:
     37If the value used is now to be retreived from a $object->getParam(...) method call, youll need to do this:
    3838
    3939    $object->getParam('gallery_images_url') . '/my/path'
     
    103103$carry_queries = array(... , ...);      $app->carryQuery(...);  //call for each value in array
    104104ohref(...)                              $app->ohref(...)
    105 printHiddenSession();                   $app->printHiddenSession();
     105printHiddenSession(...);                $app->printHiddenSession(...);
    106106dieURL(...);                            $app->dieURL(...);
    107107dieBoomerangURL(...);                   $app->dieBoomerangURL(...);
     
    123123addslashes(...)                         $db->escapeString(...)
    124124
     125$dbh
     126$GLOBALS['dbh']                         $db->getDBH()
    125127
    126128=====================================================================
     
    157159
    158160$nav->addPage(...)                      $nav->add(...)
    159 $nav->setFeature(array(...))            $nav->set(...)
    160 $nav->getFeature(...)                   $nav->get(...)
     161$nav->setFeature(array(...))            $nav->setParam(...)
     162$nav->getFeature(...)                   $nav->getParam(...)
    161163$nav->getTitle()                        $nav->get('title')
    162164$nav->printTitle()                      echo $nav->get('title')
     
    251253
    252254    if ($cache->exists('mydata')) {
    253         $node_list = $cache->get('mydata');
     255        $list = $cache->get('mydata');
    254256    }
    255257
     
    297299=====================================================================
    298300
    299 include 'form_error_header.ihtml';      $fv->printErrorMessages();
     301include_once 'form_error_header.ihtml';      $fv->printErrorMessages();
    300302
    301303
Note: See TracChangeset for help on using the changeset viewer.