Skip to content

Commit

Permalink
Simplify variables
Browse files Browse the repository at this point in the history
  • Loading branch information
vrana committed Feb 18, 2011
1 parent 35c8c92 commit 544b562
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
9 changes: 5 additions & 4 deletions plugins/dump-zip.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other)
*/
class AdminerDumpZip {
var $_filename, $_data = "";
var $filename;

function dumpOutput() {
if (!class_exists('ZipArchive')) {
Expand All @@ -17,12 +17,13 @@ function dumpOutput() {
}

function _zip($string, $state) {
$this->_data .= $string;
static $data = "";
$data .= $string;
if ($state & PHP_OUTPUT_HANDLER_END) {
$zip = new ZipArchive;
$zipFile = tempnam("", "zip");
$zip->open($zipFile, ZipArchive::OVERWRITE); // php://output is not supported
$zip->addFromString($this->_filename, $this->_data);
$zip->addFromString($this->filename, $data);
$zip->close();
$return = file_get_contents($zipFile);
unlink($zipFile);
Expand All @@ -32,7 +33,7 @@ function _zip($string, $state) {
}

function dumpHeaders($identifier, $multi_table = false) {
$this->_filename = "$identifier." . ($multi_table && ereg("[ct]sv", $_POST["format"]) ? "tar" : $_POST["format"]);
$this->filename = "$identifier." . ($multi_table && ereg("[ct]sv", $_POST["format"]) ? "tar" : $_POST["format"]);
if ($_POST["output"] == "zip") {
header("Content-Type: application/zip");
}
Expand Down
3 changes: 1 addition & 2 deletions plugins/edit-calendar.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other)
*/
class AdminerEditCalendar {
var $prepend;
var $langPath;
var $prepend, $langPath;

/**
* @param string text to append before first calendar usage
Expand Down

0 comments on commit 544b562

Please sign in to comment.