Changeset 1249
- Timestamp:
- 06/29/08 11:44:22
(2 months ago)
- Author:
- rats
- Message:
Updated phpMyAdmin to 2.11.7
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r1241 |
r1249 |
|
| 1 | 1 | ispCP ω 1.0.0 Changelog |
|---|
| 2 | 2 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
|---|
| | 3 | |
|---|
| | 4 | 2008-06-29 Benedikt Heintel |
|---|
| | 5 | - TOOLS: |
|---|
| | 6 | * Updated phpMyAdmin to 2.11.7 |
|---|
| 3 | 7 | |
|---|
| 4 | 8 | 2008-06-28 Benedikt Heintel |
|---|
| r1234 |
r1249 |
|
| 3 | 3 | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" |
|---|
| 4 | 4 | version="-//W3C//DTD XHTML 1.1//EN" dir="ltr"> |
|---|
| 5 | | <!-- $Id: Documentation.html 11327 2008-06-18 20:48:50Z lem9 $ --> |
|---|
| | 5 | <!-- $Id: Documentation.html 11338 2008-06-23 16:40:08Z lem9 $ --> |
|---|
| 6 | 6 | <!-- |
|---|
| 7 | 7 | vim: expandtab ts=4 sw=4 sts=4 tw=78 |
|---|
| … | … | |
| 12 | 12 | <link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" /> |
|---|
| 13 | 13 | <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> |
|---|
| 14 | | <title>phpMyAdmin 2.11.7-rc2 - Documentation</title> |
|---|
| | 14 | <title>phpMyAdmin 2.11.7 - Documentation</title> |
|---|
| 15 | 15 | <link rel="stylesheet" type="text/css" href="docs.css" /> |
|---|
| 16 | 16 | </head> |
|---|
| … | … | |
| 34 | 34 | </ul> |
|---|
| 35 | 35 | |
|---|
| 36 | | <h1>phpMyAdmin 2.11.7-rc2 Documentation</h1> |
|---|
| | 36 | <h1>phpMyAdmin 2.11.7 Documentation</h1> |
|---|
| 37 | 37 | |
|---|
| 38 | 38 | <ul><li><a href="http://www.phpmyadmin.net/"> |
|---|
| … | … | |
| 49 | 49 | </li> |
|---|
| 50 | 50 | <li>Documentation version: |
|---|
| 51 | | <i>$Id: Documentation.html 11327 2008-06-18 20:48:50Z lem9 $</i> |
|---|
| | 51 | <i>$Id: Documentation.html 11338 2008-06-23 16:40:08Z lem9 $</i> |
|---|
| 52 | 52 | </li> |
|---|
| 53 | 53 | </ul> |
|---|
| r1234 |
r1249 |
|
| 12 | 12 | * Glossary |
|---|
| 13 | 13 | |
|---|
| 14 | | phpMyAdmin 2.11.7-rc2 Documentation |
|---|
| | 14 | phpMyAdmin 2.11.7 Documentation |
|---|
| 15 | 15 | |
|---|
| 16 | 16 | * phpMyAdmin homepage |
|---|
| … | … | |
| 21 | 21 | + General notes: README |
|---|
| 22 | 22 | + License: LICENSE |
|---|
| 23 | | * Documentation version: $Id: Documentation.html 11327 2008-06-18 20:48:50Z |
|---|
| | 23 | * Documentation version: $Id: Documentation.html 11338 2008-06-23 16:40:08Z |
|---|
| 24 | 24 | lem9 $ |
|---|
| 25 | 25 | |
|---|
| r774 |
r1249 |
|
| 3 | 3 | /** |
|---|
| 4 | 4 | * |
|---|
| 5 | | * @version $Id: db_datadict.php 10241 2007-04-01 11:13:46Z cybot_tm $ |
|---|
| | 5 | * @version $Id: db_datadict.php 11334 2008-06-21 13:16:05Z lem9 $ |
|---|
| 6 | 6 | */ |
|---|
| 7 | 7 | |
|---|
| … | … | |
| 166 | 166 | */ |
|---|
| 167 | 167 | if (!empty($show_comment)) { |
|---|
| 168 | | echo $strTableComments . ': ' . $show_comment . '<br /><br />'; |
|---|
| | 168 | echo $strTableComments . ': ' . htmlspecialchars($show_comment) . '<br /><br />'; |
|---|
| 169 | 169 | } |
|---|
| 170 | 170 | |
|---|
| r774 |
r1249 |
|
| 3 | 3 | /** |
|---|
| 4 | 4 | * |
|---|
| 5 | | * @version $Id: db_printview.php 10478 2007-07-09 19:41:38Z lem9 $ |
|---|
| | 5 | * @version $Id: db_printview.php 11334 2008-06-21 13:16:05Z lem9 $ |
|---|
| 6 | 6 | */ |
|---|
| 7 | 7 | |
|---|
| … | … | |
| 167 | 167 | <?php |
|---|
| 168 | 168 | if (! empty($sts_data['Comment'])) { |
|---|
| 169 | | echo $sts_data['Comment']; |
|---|
| | 169 | echo htmlspecialchars($sts_data['Comment']); |
|---|
| 170 | 170 | $needs_break = '<br />'; |
|---|
| 171 | 171 | } else { |
|---|
| r1234 |
r1249 |
|
| 4 | 4 | * |
|---|
| 5 | 5 | * |
|---|
| 6 | | * @version $Id: Config.class.php 11330 2008-06-20 17:53:30Z lem9 $ |
|---|
| | 6 | * @version $Id: Config.class.php 11338 2008-06-23 16:40:08Z lem9 $ |
|---|
| 7 | 7 | */ |
|---|
| 8 | 8 | |
|---|
| … | … | |
| 86 | 86 | function checkSystem() |
|---|
| 87 | 87 | { |
|---|
| 88 | | $this->set('PMA_VERSION', '2.11.7-rc2'); |
|---|
| | 88 | $this->set('PMA_VERSION', '2.11.7'); |
|---|
| 89 | 89 | /** |
|---|
| 90 | 90 | * @deprecated |
|---|
| r818 |
r1249 |
|
| 3 | 3 | /** |
|---|
| 4 | 4 | * |
|---|
| 5 | | * @version $Id: display_import.lib.php 10588 2007-09-02 19:23:59Z lem9 $ |
|---|
| | 5 | * @version $Id: display_import.lib.php 11326 2008-06-17 21:32:48Z lem9 $ |
|---|
| 6 | 6 | */ |
|---|
| | 7 | if (! defined('PHPMYADMIN')) { |
|---|
| | 8 | exit; |
|---|
| | 9 | } |
|---|
| 7 | 10 | |
|---|
| 8 | 11 | /** |
|---|
| r1234 |
r1249 |
|
| 3 | 3 | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" |
|---|
| 4 | 4 | version="-//W3C//DTD XHTML 1.1//EN" dir="ltr"> |
|---|
| 5 | | <!-- $Id: translators.html 11327 2008-06-18 20:48:50Z lem9 $ --> |
|---|
| | 5 | <!-- $Id: translators.html 11338 2008-06-23 16:40:08Z lem9 $ --> |
|---|
| 6 | 6 | |
|---|
| 7 | 7 | <head> |
|---|
| … | … | |
| 9 | 9 | <link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" /> |
|---|
| 10 | 10 | <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> |
|---|
| 11 | | <title>phpMyAdmin 2.11.7-rc2 - Official translators</title> |
|---|
| | 11 | <title>phpMyAdmin 2.11.7 - Official translators</title> |
|---|
| 12 | 12 | <link rel="stylesheet" type="text/css" href="docs.css" /> |
|---|
| 13 | 13 | </head> |
|---|
| … | … | |
| 32 | 32 | </ul> |
|---|
| 33 | 33 | |
|---|
| 34 | | <h1>phpMyAdmin 2.11.7-rc2 official translators list</h1> |
|---|
| | 34 | <h1>phpMyAdmin 2.11.7 official translators list</h1> |
|---|
| 35 | 35 | |
|---|
| 36 | 36 | <p> Here is the list of the "official translators" of |
|---|
|
Download in other formats:
#########################################################################
# Site footer - Contents are automatically inserted after main Trac HTML
?>