2012-04-28 Junichi Satoh <junichi@rworks.jp>
* godmode/setup/setup.php: Fixed SQL error with PostgreSQL. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6221 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
8a4092219d
commit
fdcbe6886f
|
@ -1,3 +1,7 @@
|
|||
2012-04-28 Junichi Satoh <junichi@rworks.jp>
|
||||
|
||||
* godmode/setup/setup.php: Fixed SQL error with PostgreSQL.
|
||||
|
||||
2012-04-28 Junichi Satoh <junichi@rworks.jp>
|
||||
|
||||
* pandoradb.postgreSQL.sql,
|
||||
|
|
|
@ -244,7 +244,7 @@ $table->data[26][1] .= ' <a href="javascript: toggleButton(\'warning\');">' . ht
|
|||
$table->data[26][1] .= '<div id="layer_sound_warning"></div>';
|
||||
|
||||
$table->data[27][0] = __('License information');
|
||||
$license_info = db_get_value_sql ('SELECT value FROM tupdate_settings WHERE `key`="customer_key"');
|
||||
$license_info = db_get_value ('value', 'tupdate_settings', '`key`', 'customer_key');
|
||||
if ($license_info === false)
|
||||
$license_info = '';
|
||||
$table->data[27][1] = html_print_input_text ('license_info_key', $license_info, '', 40, 255, true);
|
||||
|
|
Loading…
Reference in New Issue