Merge pull request #14854 from Tithugues/fix/fix-wrong-case-in-function-names
Fix wrong case in function names
This commit is contained in:
commit
5acaa56819
2
ajax.php
2
ajax.php
@ -20,7 +20,7 @@ $_GET['ajax_request'] = 'true';
|
||||
require_once ROOT_PATH . 'libraries/common.inc.php';
|
||||
|
||||
$response = Response::getInstance();
|
||||
$response->setAJAX(true);
|
||||
$response->setAjax(true);
|
||||
|
||||
if (empty($_POST['type'])) {
|
||||
Core::fatalError(__('Bad type!'));
|
||||
|
||||
@ -78,4 +78,4 @@ $html = $browseForeigners->getHtmlForRelationalFieldSelection(
|
||||
isset($data) ? $data : ''
|
||||
);
|
||||
|
||||
$response->addHtml($html);
|
||||
$response->addHTML($html);
|
||||
|
||||
@ -96,12 +96,12 @@ class ServerVariablesController extends Controller
|
||||
/**
|
||||
* Link templates
|
||||
*/
|
||||
$this->response->addHtml($this->_getHtmlForLinkTemplates());
|
||||
$this->response->addHTML($this->_getHtmlForLinkTemplates());
|
||||
|
||||
/**
|
||||
* Displays the page
|
||||
*/
|
||||
$this->response->addHtml(
|
||||
$this->response->addHTML(
|
||||
$this->_getHtmlForServerVariables($serverVars, $serverVarsSession)
|
||||
);
|
||||
} else {
|
||||
|
||||
@ -4041,7 +4041,7 @@ class Results
|
||||
$field_flags = $GLOBALS['dbi']->fieldFlags($dt_result, $col_index);
|
||||
|
||||
$bIsText = gettype($transformation_plugin) === 'object'
|
||||
&& strpos($transformation_plugin->getMIMEtype(), 'Text')
|
||||
&& strpos($transformation_plugin->getMIMEType(), 'Text')
|
||||
=== false;
|
||||
|
||||
// disable inline grid editing
|
||||
|
||||
@ -188,7 +188,7 @@ class InsertEdit
|
||||
// No row returned
|
||||
if (! $rows[$key_id]) {
|
||||
unset($rows[$key_id], $where_clause_array[$key_id]);
|
||||
Response::getInstance()->addHtml(
|
||||
Response::getInstance()->addHTML(
|
||||
Util::getMessage(
|
||||
__('MySQL returned an empty result set (i.e. zero rows).'),
|
||||
$local_query
|
||||
|
||||
@ -143,7 +143,7 @@ class ImportXml extends ImportPlugin
|
||||
/**
|
||||
* Analyze the data in each table
|
||||
*/
|
||||
$namespaces = $xml->getNameSpaces(true);
|
||||
$namespaces = $xml->getNamespaces(true);
|
||||
|
||||
/**
|
||||
* Get the database name, collation and charset
|
||||
|
||||
Loading…
Reference in New Issue
Block a user