Skip to content

Commit dccc884

Browse files
committed
Cleaned up code - some adjustments to selected files
The following adjustments were made: - Permissions adjusted
1 parent 2dcfd16 commit dccc884

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

install/sqlParser.class.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@
1212
class SqlParser
1313
{
1414

15-
private $sql_errors;
15+
public $sql_errors;
1616

17-
private $install_failed;
17+
public $install_failed;
1818

1919
private $db_conn;
2020

21-
private $db_type;
21+
public $db_type;
2222

23-
private $db_table_prefix;
23+
public $db_table_prefix;
2424

2525
public function __construct(&$db_conn, $db_type, $db_table_prefix = '')
2626
{
@@ -112,13 +112,13 @@ public function process($filename)
112112
}
113113
}
114114

115-
private function only_good_mysql($v)
115+
protected function only_good_mysql($v)
116116
{
117117
$comment_char = '#';
118118
return $this->only_good_sql($v, $comment_char);
119119
}
120120

121-
private function only_good_sql($v, $comment_char = '-')
121+
protected function only_good_sql($v, $comment_char = '-')
122122
{
123123
$use_v = true;
124124
$findme = $comment_char;

0 commit comments

Comments
 (0)