X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=0.2.1%2Finc%2Fdb%2Flib-mysql3.php;h=5d2cfd9cff4af3844c1da9e6dfd6eea876abc2c5;hp=019c603c309b285619de8a5908190e0adc615dde;hb=4ac856c74ab07fc19ab64039904f2075c8f35b40;hpb=7bc25dd08431c94ce9edca131d56c1a36b13c28a diff --git a/0.2.1/inc/db/lib-mysql3.php b/0.2.1/inc/db/lib-mysql3.php index 019c603c30..5d2cfd9cff 100644 --- a/0.2.1/inc/db/lib-mysql3.php +++ b/0.2.1/inc/db/lib-mysql3.php @@ -263,7 +263,7 @@ function SQL_ESCAPE($str) } } // SELECT query string from table, columns and so on... ;-) -function SQL_RESULT_FROM_ARRAY ($table, array $columns, $idRow, $id) { +function SQL_RESULT_FROM_ARRAY ($table, $columns, $idRow, $id) { // Prepare the SQL statement $SQL = "SELECT ".implode(", ", $columns)." FROM "._MYSQL_PREFIX."_".$table." WHERE ".$idRow."=%d LIMIT 1";