|
Lines 149-157
sub get_syspref_from_yaml {
Link Here
|
| 149 |
sub check_db { |
149 |
sub check_db { |
| 150 |
my @sysprefs_from_file = @_; |
150 |
my @sysprefs_from_file = @_; |
| 151 |
|
151 |
|
|
|
152 |
# FIXME FrameworksLoaded is a temporary syspref created during the installation process |
| 153 |
# We should either rewrite the code to avoid its need, or delete it once the installation is finished. |
| 152 |
my $sysprefs_in_db = $dbh->selectall_hashref( |
154 |
my $sysprefs_in_db = $dbh->selectall_hashref( |
| 153 |
q{ |
155 |
q{ |
| 154 |
SELECT * from systempreferences |
156 |
SELECT * from systempreferences |
|
|
157 |
WHERE variable <> 'FrameworksLoaded' |
| 155 |
}, 'variable' |
158 |
}, 'variable' |
| 156 |
); |
159 |
); |
| 157 |
|
160 |
|
| 158 |
- |
|
|