From 161eea3f1df9fb29f740ed87b3b7f52442c31dee Mon Sep 17 00:00:00 2001 From: andreas Date: Mon, 3 Nov 2003 13:32:34 +0000 Subject: [PATCH] - changed Smarty.php.class occurences to Smarty.class.php --- docs/designers.sgml | 16 ++++++++-------- docs/fr/designers.sgml | 16 ++++++++-------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/docs/designers.sgml b/docs/designers.sgml index 1a3c2cd2..07105d96 100644 --- a/docs/designers.sgml +++ b/docs/designers.sgml @@ -3727,7 +3727,7 @@ You must supply a <b>state</b>. index.php: -require('Smarty.php.class'); +require('Smarty.class.php'); $smarty = new Smarty; $smarty->assign('cust_ids', array(1000,1001,1002,1003)); $smarty->assign('cust_names', array('Joe Schmoe','Jack Smith','Jane Johnson','Charlie Brown')); @@ -3742,7 +3742,7 @@ index.tpl: index.php: -require('Smarty.php.class'); +require('Smarty.class.php'); $smarty = new Smarty; $smarty->assign('cust_checkboxes', array( 1000 => 'Joe Schmoe', @@ -3865,7 +3865,7 @@ OUTPUT: (both examples) index.php: -require('Smarty.php.class'); +require('Smarty.class.php'); $smarty = new Smarty; $smarty->display('index.tpl'); @@ -3969,7 +3969,7 @@ OUTPUT: (possible) index.php: -require('Smarty.php.class'); +require('Smarty.class.php'); $smarty = new Smarty; $smarty->assign('cust_ids', array(1000,1001,1002,1003)); $smarty->assign('cust_names', array('Joe Schmoe','Jack Smith','Jane @@ -3986,7 +3986,7 @@ index.tpl: index.php: -require('Smarty.php.class'); +require('Smarty.class.php'); $smarty = new Smarty; $smarty->assign('cust_options', array( 1001 => 'Joe Schmoe', @@ -4093,7 +4093,7 @@ OUTPUT: (both examples) index.php: -require('Smarty.php.class'); +require('Smarty.class.php'); $smarty = new Smarty; $smarty->assign('cust_ids', array(1000,1001,1002,1003)); $smarty->assign('cust_names', array('Joe Schmoe','Jack Smith','Jane @@ -4109,7 +4109,7 @@ index.tpl: index.php: -require('Smarty.php.class'); +require('Smarty.class.php'); $smarty = new Smarty; $smarty->assign('cust_radios', array( 1001 => 'Joe Schmoe', @@ -4824,7 +4824,7 @@ OUTPUT: index.php: -require('Smarty.php.class'); +require('Smarty.class.php'); $smarty = new Smarty; $smarty->assign('data',array(1,2,3,4,5,6,7,8,9)); $smarty->assign('tr',array('bgcolor="#eeeeee"','bgcolor="#dddddd"')); diff --git a/docs/fr/designers.sgml b/docs/fr/designers.sgml index bd0e6372..7ad4480e 100644 --- a/docs/fr/designers.sgml +++ b/docs/fr/designers.sgml @@ -3599,7 +3599,7 @@ Vous devez sp index.php: -require('Smarty.php.class'); +require('Smarty.class.php'); $smarty = new Smarty; $smarty->assign('id_client', array(1000,1001,1002,1003)); $smarty->assign('cust_names', array('Joe Schmoe','Jack Smith','Jane @@ -3615,7 +3615,7 @@ index.tpl: index.php: -require('Smarty.php.class'); +require('Smarty.class.php'); $smarty = new Smarty; $smarty->assign('cust_checkboxes', array( 1001 => 'Joe Schmoe', @@ -3733,7 +3733,7 @@ SORTIE: (pour les deux exemples) index.php: -require('Smarty.php.class'); +require('Smarty.class.php'); $smarty = new Smarty; $smarty->display('index.tpl'); @@ -3838,7 +3838,7 @@ SORTIE: (possible) index.php: -require('Smarty.php.class'); +require('Smarty.class.php'); $smarty = new Smarty; $smarty->assign('id_client', array(1000,1001,1002,1003)); $smarty->assign('nom_client', array('Joe Schmoe','Jack Smith','Jane @@ -3855,7 +3855,7 @@ index.tpl: index.php: -require('Smarty.php.class'); +require('Smarty.class.php'); $smarty = new Smarty; $smarty->assign('cust_options', array( 1001 => 'Joe Schmoe', @@ -3968,7 +3968,7 @@ SORTIE: (valable pour les deux exemples) index.php: -require('Smarty.php.class'); +require('Smarty.class.php'); $smarty = new Smarty; $smarty->assign('id_client', array(1000,1001,1002,1003)); $smarty->assign('nom_client', array('Joe Schmoe','Jack Smith','Jane @@ -3984,7 +3984,7 @@ index.tpl: index.php: -require('Smarty.php.class'); +require('Smarty.class.php'); $smarty = new Smarty; $smarty->assign('cust_radios', array( 1001 => 'Joe Schmoe', @@ -4698,7 +4698,7 @@ SORTIE: index.php: -require('Smarty.php.class'); +require('Smarty.class.php'); $smarty = new Smarty; $smarty->assign('data',array(1,2,3,4,5,6,7,8,9)); $smarty->assign('tr',array('bgcolor="#eeeeee"','bgcolor="#dddddd"'));