cvs: smarty /docs/en getting-started.xml
[email protected] ("George Miroshnikov") Wed, 22 Nov 2006 14:41:10 -0000
| Newsgroups | php.smarty.cvs |
|---|---|
| Message-ID | <cvsfreespace1164206470@cvsserver> |
freespace Wed Nov 22 14:41:10 2006 UTC
Modified files:
/smarty/docs/en getting-started.xml
Log:
replaced hardcoded path separator with PATH_SEPARATOR constant
http://cvs.php.net/viewvc.cgi/smarty/docs/en/getting-started.xml?r1=1.17&r2=1.18&diff_format=u
Index: smarty/docs/en/getting-started.xml
diff -u smarty/docs/en/getting-started.xml:1.17 smarty/docs/en/getting-started.xml:1.18
--- smarty/docs/en/getting-started.xml:1.17 Mon Oct 9 23:28:03 2006
+++ smarty/docs/en/getting-started.xml Wed Nov 22 14:41:10 2006
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.17 $ -->
+<!-- $Revision: 1.18 $ -->
<part id="getting.started">
<title>Getting Started</title>
@@ -337,10 +337,10 @@
<![CDATA[
<?php
// *nix
-ini_set('include_path', ini_get('include_path').':/usr/local/lib/Smarty-v.e.r/libs/');
+ini_set('include_path', ini_get('include_path').PATH_SEPARATOR.'/usr/local/lib/Smarty-v.e.r/libs/');
// windows
-ini_set('include_path', ini_get('include_path').';c:/webroot/lib/Smarty-v.e.r/libs/');
+ini_set('include_path', ini_get('include_path').PATH_SEPARATOR.'c:/webroot/lib/Smarty-v.e.r/libs/');
?>
]]>
</programlisting>