diff options
| -rw-r--r-- | buildscripts/texbuilder/quickstart/pages.php | 9 | ||||
| -rw-r--r-- | demos/quickstart/protected/pages/Database/ActiveRecord.page | 2 | 
2 files changed, 10 insertions, 1 deletions
| diff --git a/buildscripts/texbuilder/quickstart/pages.php b/buildscripts/texbuilder/quickstart/pages.php index 2a2c6b54..608463ab 100644 --- a/buildscripts/texbuilder/quickstart/pages.php +++ b/buildscripts/texbuilder/quickstart/pages.php @@ -26,6 +26,14 @@ $pages['Tutorial: Building an AJAX Chat Application'] = array(  	'Tutorial/AjaxChat.page'
  	);
 +$pages['Tutorial: Addressbook'] = array(
 +	'Tutorial/AddressBook.page'
 +	);
 +
 +$pages['Tutorial: Addressbook'] = array(
 +	'Tutorial/AddressBook.page'
 +	);
 +
  $pages['Fundamentals'] = array(
  	'Fundamentals/Architecture.page',
      'Fundamentals/Components.page',
 @@ -109,6 +117,7 @@ $pages['Service References'] = array(  $pages['Working with Databases'] = array(
  	'Database/DAO.page',
  	'Database/ActiveRecord.page',
 +	'Database/Scaffold.page',
  	'Database/SqlMap.page');
  $pages['Advanced Topics'] = array(
 diff --git a/demos/quickstart/protected/pages/Database/ActiveRecord.page b/demos/quickstart/protected/pages/Database/ActiveRecord.page index a2890d77..c3cf663b 100644 --- a/demos/quickstart/protected/pages/Database/ActiveRecord.page +++ b/demos/quickstart/protected/pages/Database/ActiveRecord.page @@ -310,7 +310,7 @@ Record object and call the <tt>save()</tt> method. E.g.  </p>  <com:TTextHighlighter Language="php" CssClass="source block-content" id="code_690161">  $user1 = new UserRecord(); -$user1->username = "admin" +$user1->username = "admin";  $user1->email = "admin@example.com";  $user1->save(); //insert a new record | 
