diff --git a/docs/de/designers.sgml b/docs/de/designers.sgml index b7baa9bd..bfc82846 100644 --- a/docs/de/designers.sgml +++ b/docs/de/designers.sgml @@ -3328,7 +3328,7 @@ Bitte geben Sie einen <b>Provinznamen</b> ein. 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')); @@ -3343,7 +3343,7 @@ index.tpl: index.php: -require('Smarty.php.class'); +require('Smarty.class.php'); $smarty = new Smarty; $smarty->assign('cust_checkboxes', array( 1000 => 'Joe Schmoe', @@ -3463,7 +3463,7 @@ AUSGABE: (beider Beispiele) index.php: -require('Smarty.php.class'); +require('Smarty.class.php'); $smarty = new Smarty; $smarty->display('index.tpl'); @@ -3645,7 +3645,7 @@ AUSGABE: 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 @@ -3661,7 +3661,7 @@ index.tpl: index.php: -require('Smarty.php.class'); +require('Smarty.class.php'); $smarty = new Smarty; $smarty->assign('cust_radios', array( 1001 => 'Joe Schmoe', @@ -4351,7 +4351,7 @@ AUSGABE: 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"'));