]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
fix problem with uninitialized xw object
authorEvan Prodromou <evan@prodromou.name>
Tue, 20 May 2008 18:10:40 +0000 (14:10 -0400)
committerEvan Prodromou <evan@prodromou.name>
Tue, 20 May 2008 18:10:40 +0000 (14:10 -0400)
darcs-hash:20080520181040-84dde-eb1692baeb910ce86abc912e3196bae14ad3fd55.gz

lib/util.php

index 58ae330a9d93cb3d654a40609fc1171c74784bb2..8a05a346f08a5b4269045a810c54c7041c71f91a 100644 (file)
@@ -71,8 +71,8 @@ function common_show_header($pagetitle) {
        header('Content-Type: application/xhtml+xml');
        
        $xw = new XMLWriter();
-       $xw->setIndent(true);
        $xw->openURI('php://output');
+       $xw->setIndent(true);
        $xw->startDocument('1.0', 'UTF-8');
        $xw->writeDTD('html', '-//W3C//DTD XHTML 1.0 Strict//EN',
                                  'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd');