- changed Smarty.php.class occurences to Smarty.class.php

This commit is contained in:
andreas
2003-11-03 13:55:26 +00:00
parent 161eea3f1d
commit 66b6633c23

View File

@@ -3328,7 +3328,7 @@ Bitte geben Sie einen <b>Provinznamen</b> ein.
<programlisting> <programlisting>
index.php: index.php:
require('Smarty.php.class'); require('Smarty.class.php');
$smarty = new Smarty; $smarty = new Smarty;
$smarty-&gt;assign('cust_ids', array(1000,1001,1002,1003)); $smarty-&gt;assign('cust_ids', array(1000,1001,1002,1003));
$smarty-&gt;assign('cust_names', array('Joe Schmoe','Jack Smith','Jane Johnson','Charlie Brown')); $smarty-&gt;assign('cust_names', array('Joe Schmoe','Jack Smith','Jane Johnson','Charlie Brown'));
@@ -3343,7 +3343,7 @@ index.tpl:
index.php: index.php:
require('Smarty.php.class'); require('Smarty.class.php');
$smarty = new Smarty; $smarty = new Smarty;
$smarty-&gt;assign('cust_checkboxes', array( $smarty-&gt;assign('cust_checkboxes', array(
1000 =&gt; 'Joe Schmoe', 1000 =&gt; 'Joe Schmoe',
@@ -3463,7 +3463,7 @@ AUSGABE: (beider Beispiele)
<programlisting> <programlisting>
index.php: index.php:
require('Smarty.php.class'); require('Smarty.class.php');
$smarty = new Smarty; $smarty = new Smarty;
$smarty-&gt;display('index.tpl'); $smarty-&gt;display('index.tpl');
@@ -3645,7 +3645,7 @@ AUSGABE:
<programlisting> <programlisting>
index.php: index.php:
require('Smarty.php.class'); require('Smarty.class.php');
$smarty = new Smarty; $smarty = new Smarty;
$smarty-&gt;assign('cust_ids', array(1000,1001,1002,1003)); $smarty-&gt;assign('cust_ids', array(1000,1001,1002,1003));
$smarty-&gt;assign('cust_names', array('Joe Schmoe','Jack Smith','Jane $smarty-&gt;assign('cust_names', array('Joe Schmoe','Jack Smith','Jane
@@ -3661,7 +3661,7 @@ index.tpl:
index.php: index.php:
require('Smarty.php.class'); require('Smarty.class.php');
$smarty = new Smarty; $smarty = new Smarty;
$smarty-&gt;assign('cust_radios', array( $smarty-&gt;assign('cust_radios', array(
1001 =&gt; 'Joe Schmoe', 1001 =&gt; 'Joe Schmoe',
@@ -4351,7 +4351,7 @@ AUSGABE:
<programlisting> <programlisting>
index.php: index.php:
require('Smarty.php.class'); require('Smarty.class.php');
$smarty = new Smarty; $smarty = new Smarty;
$smarty-&gt;assign('data',array(1,2,3,4,5,6,7,8,9)); $smarty-&gt;assign('data',array(1,2,3,4,5,6,7,8,9));
$smarty-&gt;assign('tr',array('bgcolor="#eeeeee"','bgcolor="#dddddd"')); $smarty-&gt;assign('tr',array('bgcolor="#eeeeee"','bgcolor="#dddddd"'));