~ubuntu-branches/ubuntu/hardy/phpmyadmin/hardy

« back to all changes in this revision

Viewing changes to db_export.php

  • Committer: Bazaar Package Importer
  • Author(s): Thijs Kinkhorst, Thijs Kinkhorst, Translations
  • Date: 2007-06-17 17:52:03 UTC
  • mfrom: (1.1.12 upstream)
  • Revision ID: james.westby@ubuntu.com-20070617175203-6oa2mpmgazkhp8tl
Tags: 4:2.10.2-1

[ Thijs Kinkhorst ]
* New upstream release.
* Welcome Michal Čihař as new co-maintainer.

[ Translations ]
* Vietnamese by Clytie Siddall (Closes: #427177).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<?php
2
 
/* $Id: db_export.php 9602 2006-10-25 12:25:01Z nijel $ */
 
2
/* $Id: db_export.php 10390 2007-05-14 16:03:38Z lem9 $ */
3
3
// vim: expandtab sw=4 ts=4 sts=4:
4
4
/**
5
5
 * dumps a database
27
27
 
28
28
// exit if no tables in db found
29
29
if ( $num_tables < 1 ) {
30
 
    echo $strDatabaseNoTable;
 
30
    echo '<div class="warning">' . $strNoTablesFound . '</div>';
31
31
    require('./libraries/footer.inc.php');
32
32
    exit;
33
33
} // end if