2008-09-18 Sancho Lerena <slerena@artica.es>
* install.php: Fixed a bad description string. * pandoradb.sql: Precission for the float in post_process was insignificant (2 decimals), not valid to transform from bytes to MB for example, altered to have 13 decimals. Thanks to darkgate for this bug report. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1099 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
a2a0bde820
commit
9d562c2e14
|
@ -1,3 +1,12 @@
|
|||
2008-09-18 Sancho Lerena <slerena@artica.es>
|
||||
|
||||
* install.php: Fixed a bad description string.
|
||||
|
||||
* pandoradb.sql: Precission for the float in post_process was
|
||||
insignificant (2 decimals), not valid to transform from bytes
|
||||
to MB for example, altered to have 13 decimals. Thanks to
|
||||
darkgate for this bug report.
|
||||
|
||||
2008-09-17 Evi Vanoost <vanooste@rcbi.rochester.edu>
|
||||
|
||||
* operation/visual_console/render_view.php: Removed short tags.
|
||||
|
|
|
@ -187,7 +187,7 @@ function install_step1() {
|
|||
Configuration and database would be overwritten if you continued.</div>";
|
||||
}
|
||||
echo "<table width=100%>";
|
||||
$writable = check_writable ( "include", "Checking if ./config is writable");
|
||||
$writable = check_writable ( "include", "Checking if ./include is writable");
|
||||
if (file_exists("include/config.php"))
|
||||
$writable += check_writable ( "include/config.php", "Checking if include/config.php is writable");
|
||||
echo "</table>";
|
||||
|
|
|
@ -153,7 +153,7 @@ CREATE TABLE IF NOT EXISTS `tagente_modulo` (
|
|||
`plugin_pass` varchar(250) default '',
|
||||
`plugin_parameter` text,
|
||||
`id_plugin` int(10) default '0',
|
||||
`post_process` double(18,2) default NULL,
|
||||
`post_process` double(18,13) default NULL,
|
||||
`prediction_module` bigint(14) default '0',
|
||||
`max_timeout` int(4) unsigned default '0',
|
||||
PRIMARY KEY (`id_agente_modulo`),
|
||||
|
|
Loading…
Reference in New Issue