Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Čihař <michal@cihar.com>2004-12-29 17:16:51 +0300
committerMichal Čihař <michal@cihar.com>2004-12-29 17:16:51 +0300
commitf1f39b8ed115c5cfbd18d3dca5fad1707beb00f2 (patch)
treea72311ad2bf44cee4b5f02179f6e185be6883853 /browse_foreigners.php
parent9edf12659973c6a9d1d33648bb8d7e2bef2969ad (diff)
added infou about UFPDF to documentation
Diffstat (limited to 'browse_foreigners.php')
-rw-r--r--browse_foreigners.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/browse_foreigners.php b/browse_foreigners.php
index 5925f05ce3..1b05088184 100644
--- a/browse_foreigners.php
+++ b/browse_foreigners.php
@@ -182,7 +182,7 @@ if (isset($disp_row) && is_array($disp_row)) {
$val = key($mysql_val_relrow[$i]);
$key = $mysql_val_relrow[$i][$val];
- if (strlen($val) <= $cfg['LimitChars']) {
+ if (PMA_strlen($val) <= $cfg['LimitChars']) {
$value = htmlspecialchars($val);
$vtitle = '';
} else {
@@ -199,12 +199,12 @@ if (isset($disp_row) && is_array($disp_row)) {
<?php
$key = key($mysql_key_relrow[$i]);
$val = $mysql_key_relrow[$i][$key];
- if (strlen($val) <= $cfg['LimitChars']) {
+ if (PMA_strlen($val) <= $cfg['LimitChars']) {
$value = htmlspecialchars($val);
$vtitle = '';
} else {
$vtitle = htmlspecialchars($val);
- $value = htmlspecialchars(substr($val, 0, $cfg['LimitChars']) . '...');
+ $value = htmlspecialchars(PMA_substr($val, 0, $cfg['LimitChars']) . '...');
}
$key_equals_data = isset($data) && $key == $data;