mirror of
https://github.com/vrana/adminer.git
synced 2025-09-03 11:22:35 +02:00
Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
86b0fbf529 | ||
|
a89ab34a8e | ||
|
534f4ee5cc | ||
|
55c757a59a |
@@ -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) {
|
||||
|
@@ -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) {
|
||||
|
@@ -1,2 +1,2 @@
|
||||
<?php
|
||||
$VERSION = "3.6.0";
|
||||
$VERSION = "3.6.1";
|
||||
|
@@ -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
|
||||
|
@@ -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) {
|
||||
|
Reference in New Issue
Block a user