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:
authorMadhura Jayaratne <madhura.cj@gmail.com>2011-09-23 07:13:41 +0400
committerMadhura Jayaratne <madhura.cj@gmail.com>2011-09-23 07:13:41 +0400
commite67a0a2531fff325477c5babcfffbf205ca755b3 (patch)
tree72ee9b0d6f6fe17a6189ddc46e363d408f59b2df /tbl_tracking.php
parentac088aaee0194f28f435b63b978db96426cda642 (diff)
Spaces between parameters in function calls
Diffstat (limited to 'tbl_tracking.php')
-rw-r--r--tbl_tracking.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tbl_tracking.php b/tbl_tracking.php
index 6148bbbd3d..847578c794 100644
--- a/tbl_tracking.php
+++ b/tbl_tracking.php
@@ -104,7 +104,7 @@ if (isset($_REQUEST['report_export'])) {
// Export as file download
if (isset($_REQUEST['report_export']) && $_REQUEST['export_type'] == 'sqldumpfile') {
- @ini_set('url_rewriter.tags','');
+ @ini_set('url_rewriter.tags', '');
$dump = "# " . sprintf(__('Tracking report for table `%s`'), htmlspecialchars($_REQUEST['table'])) . "\n" .
"# " . date('Y-m-d H:i:s') . "\n";
@@ -665,7 +665,7 @@ if ($last_version > 0) {
<td><?php echo htmlspecialchars($version['date_updated']);?></td>
<td><?php echo $version_status;?></td>
<td> <a href="tbl_tracking.php<?php echo PMA_generate_common_url($url_params + array('report' => 'true', 'version' => $version['version'])
-);?>"><?php echo __('Tracking report');?></a>
+);?>"><?php echo __('Tracking report');?></a>
| <a href="tbl_tracking.php<?php echo PMA_generate_common_url($url_params + array('snapshot' => 'true', 'version' => $version['version'])
);?>"><?php echo __('Structure snapshot');?></a>
</td>