diff --git a/ChangeLog b/ChangeLog index 514259c4c9..2663938a29 100644 --- a/ChangeLog +++ b/ChangeLog @@ -96,6 +96,7 @@ phpMyAdmin - ChangeLog - issue #11407 ALTER TABLE failing on import when table exists 4.4.15.0 (not yet released) +- issue #11411 Undefined "replace" function on numeric scalar 4.4.14.0 (2015-08-20) - issue #11367 Export after search, missing WHERE clause diff --git a/db_tracking.php b/db_tracking.php index a4a9258831..42db66199f 100644 --- a/db_tracking.php +++ b/db_tracking.php @@ -109,7 +109,7 @@ $all_tables_query = ' SELECT table_name, MAX(version) as version FROM ' . $all_tables_result = PMA_queryAsControlUser($all_tables_query); // If a HEAD version exists -if ($GLOBALS['dbi']->numRows($all_tables_result) > 0) { +if (is_object($all_tables_result) && $GLOBALS['dbi']->numRows($all_tables_result) > 0) { PMA_displayTrackedTables( $GLOBALS['db'], $all_tables_result, $url_query, $pmaThemeImage, $text_dir, $cfgRelation diff --git a/js/functions.js b/js/functions.js index b54a8f51d5..626e47f3f2 100644 --- a/js/functions.js +++ b/js/functions.js @@ -209,6 +209,7 @@ function PMA_tooltip($elements, item, myContent, additionalOptions) function escapeHtml(unsafe) { if (typeof(unsafe) != 'undefined') { return unsafe + .toString() .replace(/&/g, "&") .replace(//g, ">") diff --git a/libraries/tracking.lib.php b/libraries/tracking.lib.php index 5fb845e344..dc839b0413 100644 --- a/libraries/tracking.lib.php +++ b/libraries/tracking.lib.php @@ -1588,12 +1588,12 @@ function PMA_getUntrackedTables($db) /** * Display tracked tables * - * @param string $db current database - * @param resource $all_tables_result result set of tracked tables - * @param string $url_query url query string - * @param string $pmaThemeImage path to theme's image folder - * @param string $text_dir text direction - * @param array $cfgRelation configuration storage info + * @param string $db current database + * @param object $all_tables_result result set of tracked tables + * @param string $url_query url query string + * @param string $pmaThemeImage path to theme's image folder + * @param string $text_dir text direction + * @param array $cfgRelation configuration storage info * * @return void */ diff --git a/po/el.po b/po/el.po index 205cb3ea71..15995194b0 100644 --- a/po/el.po +++ b/po/el.po @@ -2,12 +2,12 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.5.0-dev\n" -"Report-Msgid-Bugs-To: developers@phpmyadmin.net\n" +"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2015-08-22 07:48-0400\n" -"PO-Revision-Date: 2015-08-19 13:01+0200\n" +"PO-Revision-Date: 2015-08-23 20:15+0200\n" "Last-Translator: Παναγιώτης Παπάζογλου \n" -"Language-Team: Greek \n" +"Language-Team: Greek " +"\n" "Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -6034,6 +6034,8 @@ msgid "" "Add IF NOT EXISTS (less efficient as indexes will be generated during table " "creation)" msgstr "" +"Προσθήκη του IF NOT EXISTS (λιγότερο αποτελεσματικό από ευρετήρια καθώς θα " +"δημιουργηθούν κατά τη δημιουργία τη δημιουργία πίνακα)" #: libraries/config/messages.inc.php:210 msgid "Use ignore inserts" @@ -10598,12 +10600,14 @@ msgstr "Προσθήκη δηλώσεων:" #: libraries/plugins/export/ExportSql.class.php:277 msgid "(less efficient as indexes will be generated during table creation)" msgstr "" +"(λιγότερυ αποτελεσματικό από ευρετήρια καθώς θα δημιουργηθούν κατά τη " +"δημιουργία πίνακα)" #: libraries/plugins/export/ExportSql.class.php:282 -#, fuzzy, php-format +#, php-format #| msgid "Session value" msgid "%s value" -msgstr "Τιμή συνεδρίας" +msgstr "%s τιμή" #: libraries/plugins/export/ExportSql.class.php:322 msgid "" diff --git a/themes/pmahomme/css/rte.css.php b/themes/pmahomme/css/rte.css.php index 0db21a805c..55d7832e9a 100644 --- a/themes/pmahomme/css/rte.css.php +++ b/themes/pmahomme/css/rte.css.php @@ -38,6 +38,12 @@ if (! defined('PMA_MINIMUM_COMMON') && ! defined('TESTSUITE')) { -webkit-box-sizing: border-box; } +.rte_table input[type=checkbox], +.rte_table input[type=radio] { + width: auto; + margin-right: 6px; +} + .rte_table .routine_params_table { width: 100%; }