1
0
mirror of https://github.com/vrana/adminer.git synced 2025-09-03 11:22:35 +02:00

Compare commits

..

4 Commits

Author SHA1 Message Date
Jakub Vrana
86b0fbf529 Release 3.6.1 2012-09-17 15:33:09 -07:00
Jakub Vrana
a89ab34a8e Fix compiled version on PHP with multibyte support 2012-09-17 15:32:28 -07:00
Jakub Vrana
534f4ee5cc Fix doc comments 2012-09-16 06:43:55 -07:00
Jakub Vrana
55c757a59a Develop 2012-09-16 06:43:16 -07:00
5 changed files with 10 additions and 4 deletions

View File

@@ -296,6 +296,7 @@ if (!defined("DRIVER")) {
/** Formulate SQL modification query with limit 1
* @param string everything after UPDATE or DELETE
* @param string
* @return string
*/
function limit1($query, $where) {
@@ -534,6 +535,7 @@ if (!defined("DRIVER")) {
/** Create database
* @param string
* @param string
* @return string
*/
function create_database($db, $collation) {
@@ -552,7 +554,7 @@ if (!defined("DRIVER")) {
/** Rename database from DB
* @param string new name
* @return string
* @param string
* @return bool
*/
function rename_database($name, $collation) {

View File

@@ -359,7 +359,7 @@ function where_check($val) {
* @param int condition order
* @param string column identifier
* @param string
* @return string
* @param string
* @return string
*/
function where_link($i, $column, $value, $operator = "=") {
@@ -545,6 +545,7 @@ function remove_from_uri($param = "") {
/** Generate page number for pagination
* @param int
* @param int
* @return string
*/
function pagination($page, $current) {

View File

@@ -1,2 +1,2 @@
<?php
$VERSION = "3.6.0";
$VERSION = "3.6.1";

View File

@@ -1,3 +1,6 @@
Adminer 3.6.1 (released 2012-09-17):
Fix compiled version on PHP with multibyte support
Adminer 3.6.0 (released 2012-09-16):
Load more data in select
Edit strings with \n in textarea

View File

@@ -9,7 +9,7 @@ function add_apo_slashes($s) {
}
function add_quo_slashes($s) {
return addcslashes($s, "\n\r\$\"\\");
return addcslashes($s, "\n\r\$\0\"\\");
}
function remove_lang($match) {