Skip to content

Commit

Permalink
[299] Use XMLWriter::endElement() instead of XMLWriter::writeRaw() as…
Browse files Browse the repository at this point in the history
… intended (character-achievements.php)
  • Loading branch information
Shadez committed Jul 9, 2010
1 parent a263be1 commit 78553cb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions character-achievements.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/**
* @package World of Warcraft Armory
* @version Release Candidate 1
* @revision 297
* @revision 299
* @copyright (c) 2009-2010 Shadez
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
Expand Down Expand Up @@ -140,7 +140,7 @@
$xml->XMLWriter()->endElement(); //achievement
}
}
$xml->XMLWriter()->writeRaw('</achievement>'); //achievement
$xml->XMLWriter()->endElement(); //achievement
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion includes/revision_nr.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

define('ARMORY_REVISION', 298);
define('ARMORY_REVISION', 299);
define('DB_VERSION', 'armory_r289');

?>

0 comments on commit 78553cb

Please sign in to comment.