1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-12 17:44:07 +02:00

Spaces because of white-space: pre

git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@1213 7c3ca157-0c34-0410-bff1-cbf682f78f5c
This commit is contained in:
jakubvrana
2009-10-23 15:19:13 +00:00
parent c3425cf9a6
commit a98a42aeb8

View File

@@ -84,12 +84,12 @@ ORDER BY ORDINAL_POSITION");
foreach ($cols as $column => $val) {
$link .= where_link($i++, $column, $row[$val]);
}
echo " <a href='" . h($link) . "'>$backwardKey[name]</a>";
echo "<a href='" . h($link) . "'>$backwardKey[name]</a>";
$link = ME . 'edit=' . urlencode($table);
foreach ($cols as $column => $val) {
$link .= "&set" . urlencode("[" . bracket_escape($column) . "]") . "=" . urlencode($row[$val]);
}
echo "<a href='" . h($link) . "' title='" . lang('New item') . "'>+</a>";
echo "<a href='" . h($link) . "' title='" . lang('New item') . "'>+</a> ";
}
}
}