- Timestamp:
- 02/13/11 09:51:41 (16 months ago)
- Location:
- trunk/gui/tools/pma
- Files:
-
- 1 added
- 1 deleted
- 9 edited
-
ChangeLog (modified) (1 diff)
-
Documentation.html (modified) (2 diffs)
-
Documentation.txt (modified) (1 diff)
-
README (modified) (1 diff)
-
RELEASE-DATE-3.3.9.1 (deleted)
-
RELEASE-DATE-3.3.9.2 (added)
-
import.php (modified) (1 diff)
-
libraries/Config.class.php (modified) (1 diff)
-
libraries/bookmark.lib.php (modified) (3 diffs)
-
sql.php (modified) (1 diff)
-
translators.html (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/gui/tools/pma/ChangeLog
r3772 r3774 5 5 $Id$ 6 6 $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyAdmin/ChangeLog $ 7 8 3.3.9.2 (2011-02-11) 9 - [security] SQL injection, see PMASA-2011-2 7 10 8 11 3.3.9.1 (2011-02-08) -
trunk/gui/tools/pma/Documentation.html
r3772 r3774 11 11 <link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" /> 12 12 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 13 <title>phpMyAdmin 3.3.9. 1- Documentation</title>13 <title>phpMyAdmin 3.3.9.2 - Documentation</title> 14 14 <link rel="stylesheet" type="text/css" href="docs.css" /> 15 15 </head> … … 19 19 <h1> 20 20 <a href="http://www.phpmyadmin.net/">php<span class="myadmin">MyAdmin</span></a> 21 3.3.9. 121 3.3.9.2 22 22 Documentation 23 23 </h1> -
trunk/gui/tools/pma/Documentation.txt
r3772 r3774 1 phpMyAdmin 3.3.9. 1Documentation1 phpMyAdmin 3.3.9.2 Documentation 2 2 3 3 * Top -
trunk/gui/tools/pma/README
r3772 r3774 6 6 A set of PHP-scripts to manage MySQL over the web. 7 7 8 Version 3.3.9. 18 Version 3.3.9.2 9 9 --------------- 10 10 http://www.phpmyadmin.net/ -
trunk/gui/tools/pma/import.php
r3110 r3774 152 152 // Bookmark Support: get a query back from bookmark if required 153 153 if (!empty($id_bookmark)) { 154 $id_bookmark = (int)$id_bookmark; 154 155 require_once './libraries/bookmark.lib.php'; 155 156 switch ($action_bookmark) { -
trunk/gui/tools/pma/libraries/Config.class.php
r3772 r3774 93 93 function checkSystem() 94 94 { 95 $this->set('PMA_VERSION', '3.3.9. 1');95 $this->set('PMA_VERSION', '3.3.9.2'); 96 96 /** 97 97 * @deprecated -
trunk/gui/tools/pma/libraries/bookmark.lib.php
r2840 r3774 96 96 * @param string which field to look up the $id 97 97 * @param boolean TRUE: get all bookmarks regardless of the owning user 98 * @param boolean whether to ignore bookmarks with no user 98 99 * 99 100 * @return string the sql query … … 101 102 * @access public 102 103 */ 103 function PMA_Bookmark_get($db, $id, $id_field = 'id', $action_bookmark_all = FALSE )104 function PMA_Bookmark_get($db, $id, $id_field = 'id', $action_bookmark_all = FALSE, $exact_user_match = FALSE) 104 105 { 105 106 global $controllink; … … 112 113 113 114 $query = 'SELECT query FROM ' . PMA_backquote($cfgBookmark['db']) . '.' . PMA_backquote($cfgBookmark['table']) 114 . ' WHERE dbase = \'' . PMA_sqlAddslashes($db) . '\'' 115 . ($action_bookmark_all? '' : ' AND (user = \'' . PMA_sqlAddslashes($cfgBookmark['user']) . '\'' 116 . ' OR user = \'\')') 117 . ' AND ' . PMA_backquote($id_field) . ' = ' . $id; 115 . ' WHERE dbase = \'' . PMA_sqlAddslashes($db) . '\''; 116 117 if (!$action_bookmark_all) { 118 $query .= ' AND (user = \'' . PMA_sqlAddslashes($cfgBookmark['user']) . '\''; 119 if (!$exact_user_match) { 120 $query .= ' OR user = \'\''; 121 } 122 $query .= ')'; 123 } 124 125 $query .= ' AND ' . PMA_backquote($id_field) . ' = ' . $id; 126 118 127 return PMA_DBI_fetch_value($query, 0, 0, $controllink); 119 128 } // end of the 'PMA_Bookmark_get()' function -
trunk/gui/tools/pma/sql.php
r3252 r3774 55 55 require_once './libraries/bookmark.lib.php'; 56 56 $book_sql_query = PMA_Bookmark_get($db, '\'' . PMA_sqlAddslashes($table) . '\'', 57 'label' );57 'label', FALSE, TRUE); 58 58 59 59 if (! empty($book_sql_query)) { -
trunk/gui/tools/pma/translators.html
r3772 r3774 12 12 <link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" /> 13 13 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 14 <title>phpMyAdmin 3.3.9. 1- Official translators</title>14 <title>phpMyAdmin 3.3.9.2 - Official translators</title> 15 15 <link rel="stylesheet" type="text/css" href="docs.css" /> 16 16 </head> … … 20 20 <h1> 21 21 <a href="http://www.phpmyadmin.net/">php<span class="myadmin">MyAdmin</span></a> 22 3.3.9. 122 3.3.9.2 23 23 official translators list 24 24 </h1>
Note: See TracChangeset
for help on using the changeset viewer.
