Commit 90393b12 authored by pookey's avatar pookey

attempting to remove the blank lines after programlistings

parent d6b1d490
...@@ -147,10 +147,7 @@ ...@@ -147,10 +147,7 @@
<programlisting role="php"><![CDATA[ <programlisting role="php"><![CDATA[
<?php <?php
require_once('path-to-doctrine/lib/Doctrine.php'); require_once('path-to-doctrine/lib/Doctrine.php');
?> ?>]]></programlisting>
]]>
</programlisting>
<para> <para>
Doctrine support <ulink Doctrine support <ulink
url="http://www.php.net/autoload">Autoloading</ulink> for including url="http://www.php.net/autoload">Autoloading</ulink> for including
...@@ -167,9 +164,7 @@ ...@@ -167,9 +164,7 @@
function __autoload($class) { function __autoload($class) {
Doctrine::autoload($class); Doctrine::autoload($class);
} }
?> ?>]]></programlisting>
]]>
</programlisting>
<para> <para>
If your project uses autoload and/or you have other libraries that use If your project uses autoload and/or you have other libraries that use
...@@ -181,9 +176,7 @@ ...@@ -181,9 +176,7 @@
<programlisting role="php"><![CDATA[ <programlisting role="php"><![CDATA[
<?php <?php
spl_autoload_register(array('Doctrine', 'autoload')); spl_autoload_register(array('Doctrine', 'autoload'));
?> ?>]]></programlisting>
]]>
</programlisting>
</sect1> </sect1>
<sect1 id="compiling"> <sect1 id="compiling">
...@@ -201,10 +194,7 @@ ...@@ -201,10 +194,7 @@
// on some other script: // on some other script:
require_once('path_to_doctrine/Doctrine.compiled.php'); require_once('path_to_doctrine/Doctrine.compiled.php');
?> ?>]]></programlisting>
]]>
</programlisting>
</sect1> </sect1>
</chapter> </chapter>
...@@ -277,9 +267,7 @@ ...@@ -277,9 +267,7 @@
print $phonenumber."\n"; print $phonenumber."\n";
} }
} }
?> ?>]]></programlisting>
]]>
</programlisting>
</sect1> </sect1>
</chapter> </chapter>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment