forked from phpmyadmin/phpmyadmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
executable file
·5898 lines (4960 loc) · 278 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
----------------------
phpMyAdmin - Changelog
----------------------
$Id$
$Source$
2005-01-15 Alexander M. Turek <me@derrabus.de>
* server_links.inc.php, server_engines.php, lang/*.inc.php,
libraries/storage_engines.php: Detailed storage engines status
information.
2005-01-12 Alexander M. Turek <me@derrabus.de>
* tbl_properties_table_info.inc.php: Basic view detection.
* tbl_properties_structure.php: Disabled table-specific interface elements
for views.
2005-01-11 Alexander M. Turek <me@derrabus.de>
* libraries/relation.lib.php:
- Removed redundant code;
- Fixed some comments.
* tbl_properties_structure.php: Corrected TH numbering.
* db_details_structure.php: Small design glitch with "in use" tables.
* db_details_structure.php, mult_submits.inc.php, lang/*.inc.php:
- Views are now displayed correctly within the table list;
- Added ability to drop views from the db structure page.
TODO: It is not yet possible to drop a view from the table sub pages.
2005-01-11 Marc Delisle <lem9@users.sourceforge.net>
* libraries/dbi/mysqli.dbi.lib.php: bug #1076213, headers sent
on invalid login
2005-01-10 Michal Čihař <michal@cihar.com>
* lang/czech: Fix typo (translation #1099459).
2005-01-10 Olivier Mueller <om@omnis.ch>
* README: copyright, we're in 2005
2005-01-09 Marc Delisle <lem9@users.sourceforge.net>
* lang/danish: Updated, thanks to AlleyKat - dk_alleykat.
* lang/catalan update, thanks to Xavier Navarro (xavin).
* lang/japanese: updated, thanks to Tadashi Jokagi (elf2000)
* lang/dutch: Updates, thanks to Ivo Teel.
* lang/indonesian: Update thanks to Rachim Tamsjadi - tamsy.
* lang/galician: Updated, thanks to Xosé Calvo.
* lang/spanish: Updated, thanks to Daniel Hinostroza (hinostroza).
### 2.6.1-rc2 released
2005-01-07 Marc Delisle <lem9@users.sourceforge.net>
* tbl_addfield.php: bug #1082680, undefined $field_charset when adding
a FLOAT field in MySQL 4.1.x
2005-01-07 Michal Čihař <michal@cihar.com>
* Documentation.html, tbl_change.php, tbl_properties.inc.php,
libraries/functions.js, libraries/tbl_change.js,
libraries/keyhandler.js: Use Option key for Safari for moving (bug
#1094137), move key handler function to separate file so we have only
one, make movement work correctly in vertical display of properties.
* libraries/common.lib.php: Fix timestamp in uva condition with MySQL 4.1
(bug #1097593).
2005-01-06 Marc Delisle <lem9@users.sourceforge.net>
* tbl_change.php: removed old PHP3-workaround that caused problems
with field names like '000'
2005-01-05 Michal Čihař <michal@cihar.com>
* tbl_properties_operations.php: Fix changning table parameters if it has
no auto increment (bug #1096246).
2005-01-04 Alexander M. Turek <me@derrabus.de>
* lang/german-*.inc.php:
- Updates and small corrections;
- Synchronized translation with the German MySQL documentation.
2005-01-03 Michal Čihař <michal@cihar.com>
* export.php: Use standardised mime types and use content encoding for
gzip/bzip2. I hope this will fix double gzip compression as in bug
#1094649.
2005-01-01 Michal Čihař <michal@cihar.com>
* tbl_alter.php: Don't try to set collation for non text fields (bug
#1094109).
* sql.php: Do not forget reloading when launching multiple queries (bug
#1090818).
2004-12-30 Marc Delisle <lem9@users.sourceforge.net>
* lang/swedish: Updated, thanks to Björn T. Hallberg (bth).
* lang/norwegian: Update, thanks to Sven-Erik Andersen
* lang/latvian: Updated, thanks to Sandis Jerics (saaa2002).
2004-12-30 Michal Čihař <michal@cihar.com>
* libraries/fpdf/ufpdf.php: Fix some warnings.
2004-12-29 Michal Čihař <michal@cihar.com>
* libraries/export/sql.php: Fix typo.
* server_databases.php: Use same sort order as in left frame (bug
#1087244), allow sorting even if not showing stats.
* pdf_schema.php, libraries/fpdf/fpdf.php, libraries/fpdf/ufpdf.php,
libraries/fpdf/font/FreeSans*: Added support for PDF output in utf-8,
uses UFPDF class from http://www.acko.net/node/56. NOTE: We now have a
bit modified FPDF class. (bug #1046051)
* Documentation.html: Added info about UFPDF library.
* lang/czech, lang/english: Improved some texts, also bug #1009667.
2004-12-28 Michal Čihař <michal@cihar.com>
* libraries/tbl_move_copy.php: Fix constraints copying (bug #1085900).
* config.inc.php, lang/*, libraries/common.lib.php,
libraries/config_import.lib.php, libraries/display_export.lib.php,
libraries/export/sql.php: Support for selecting SQL export compatibility
(RFE #1060040).
* libraries/tbl_change.js: Faster navigation in calendar (RFE #1090315).
* mult_submits.inc.php, tbl_row_delete.php: Fix % escaping (bug #1082954).
* read_dump.php: Fix database name extraction from use statement (bug
#1084777).
* css/phpmyadmin.css.php, libraries/common.lib.php: Disabled theme manager
still allows to select theme in configuration (bug #1084712).
* tbl_replace.php: Remove unused code.
* main.php, lang/*, libraries/string.lib.php: Added warnings about
mbstring - one to disable function overloading and one for requesting
mbstring for multibyte charsets (bugs #1063149 and #1063821).
* tbl_change.php, tbl_replace.php, lang/*, libraries/common.lib.php:
Support for editing next entry (when numeric primary key) (RFE
#1074906).
2004-12-26 Marc Delisle <lem9@users.sourceforge.net>
* libraries/database_interface.lib.php: bug #1085647, wrong parameters
for strpos(), thanks to Meithar - meithar
* libraries/select_server.lib.php, bug #1073056, unable to submit selected server,
thanks to jamaz - jamaz
* tbl_change.php: bug #1090608, undefined variable, thanks to peterinsb
* scripts/upgrade_tables_mysql_4_1_2+.sql: bug #1084426, misleading comments
* tbl_create.php: bug #1085494, illegal length value for LONGTEXT, thanks to mjec
2004-12-16 Marc Delisle <lem9@users.sourceforge.net>
* libraries/blowfish.php: bug #1085997, undefined variables,
patch thanks to Chandrakumar Muthaiah - sudhach
2004-12-14 Alexander M. Turek <me@derrabus.de>
* libraries/sqlparser.data.php: Added keywords NAMES and VIEW.
2004-12-13 Michal Čihař <michal@cihar.com>
* libraries/tbl_change.js: Do not catch Alt and Shift keys (bug #1082315).
* libraries/export/sql.php: Do not duplicate constraints when exporting
multiple databases (bug #1084459).
2004-12-12 Marc Delisle <lem9@users.sourceforge.net>
* lang/japanese: updated, thanks to Tadashi Jokagi (elf2000)
* lang/latvian: Updated, thanks to Sandis Jerics (saaa2002).
* lang/serbian: Updated, thanks to Mihailo Stefanovic (mikis).
* lang/catalan update, thanks to Xavier Navarro (xavin).
* lang/danish: Updated, thanks to AlleyKat - dk_alleykat.
* lang/galician: Updated, thanks to Xosé Calvo.
* lang/polish: Updated, thanks to Jakub Wilk (ubanus).
* lang/chinese_traditional-*.inc.php: Updates, thanks to Siu Sun.
* lang/spanish: Updated, thanks to Daniel Hinostroza (hinostroza).
* lang/turkish update, thanks to boralioglu.
### 2.6.1-rc1 released
2004-12-10 Marc Delisle <lem9@users.sourceforge.net>
* libraries/transformations/text_plain__external.inc.php:
security fix: no longer use the shell to execute external program
* Documentation.html: mention the new need of PHP >= 4.3.0 to run
external programs
2004-12-09 Marc Delisle <lem9@users.sourceforge.net>
* tbl_row_delete.php, libraries/display_tbl.lib.php:
cannot drop or export multiple rows under IE6
2004-12-07 Marc Delisle <lem9@users.sourceforge.net>
* read_dump.php: security fix on $sql_localfile
* lang/norwegian: Update, thanks to Sven-Erik Andersen
* lang/danish: Updated, thanks to AlleyKat - dk_alleykat.
* lang/indonesian: Update thanks to Rachim Tamsjadi - tamsy.
2004-12-01 Marc Delisle <lem9@users.sourceforge.net>
* db_details_structure.php, lang/*: added hint strApproximateCount referring
to FAQ 3.11 (bug #1075658)
2004-11-30 Marc Delisle <lem9@users.sourceforge.net>
* libraries/auth/cookie.auth.lib.php: Avoid displaying the
"No activity" message if more than 4 times the LoginCookieValidity
timeout has passed: no need to alert users the next morning
(for example) that they have been inactive.
2004-11-25 Marc Delisle <lem9@users.sourceforge.net>
* libraries/auth/cookie.auth.lib.php, lang/*: "No activity" message
to explain to users why they have to relogin
2004-11-25 Michal Čihař <michal@cihar.com>
* libraries/mcrypt.lib.php: Trim result, because it can be paded with \0s.
2004-11-24 Marc Delisle <lem9@users.sourceforge.net>
* libraries/mcrypt.lib.php, /libraries/blowfish.php,
libraries/auth/cookie.auth.lib.php: support of mcrypt
library (blowfish) for speed improvement in auth_type cookie
2004-11-23 Marc Delisle <lem9@users.sourceforge.net>
* user_password.php: wrong generated cookie name
2004-11-21 Marc Delisle <lem9@users.sourceforge.net>
* server_privileges.php: bug #1067626, column privileges while copying user
* libraries/common.lib.php: bug #1070197, not connecting if using
a non-standard HTTP port (bug introduced in 2.6.0-pl3)
2004-11-19 Garvin Hicking <pma@supergarv.de>
* libraries/bookmark.lib.php, left.php:
Massively speed up table display for left frame, if
PMA infrastructure is used. Use native PHP function
for indenting.
* libraries/mysql_charsets.lib.php: Use a static
array cache to speed up returning the same collation
information.
2004-11-19 Marc Delisle <lem9@users.sourceforge.net>
* libraries/display_tbl.lib.php: we have the PMA_get_indexes() function,
let's use it!
* tbl_indexes.php: bug #1068994, undefined variable
* libraries/dbg/profiling.php: bug #1068318, call-time pass-by-reference
2004-11-16 Michal Čihař <michal@cihar.com>
* left.php: Possible undefined index (bug #1067199).
* Documentation.html: Warn about Excel export problems in documentation
(bug #1063082).
2004-11-14 Marc Delisle <lem9@users.sourceforge.net>
* tbl_relation.php: bug #1050437, intercept constraint failure
and do not offer to add an InnoDB foreign key if the field
does not have a key
2004-11-13 Marc Delisle <lem9@users.sourceforge.net>
* server_privileges.php: bug #1056706: table specific privs for a db containing an escaped wildcard character
* libraries/display_tbl.lib.php: bug #1065688: display the Full text link
on the results for PROCEDURE ANALYSE
2004-11-11 Michal Čihař <michal@cihar.com>
* tbl_properties_operations.php: Allow InnoDB text to be included in user
comment.
2004-11-09 Michal Čihař <michal@cihar.com>
* browse_foreigners.php, server_binlog.php: Truncate text according to
text length and not byte count.
2004-11-07 Alexander M. Turek <me@derrabus.de>
* Documentation.html, README: Updated credits.
2004-11-07 Marc Delisle <lem9@users.sourceforge.net>
* mult_submits.inc.php: bug #1054720, multi-row delete
2004-11-06 Michael Keck <mkkeck@users.sourceforge.net>
* queryframe.php: bug #1046434 (Light mode does not work)
2004-11-06 Marc Delisle <lem9@users.sourceforge.net>
* libraries/common.lib.php: put sanitize logic in PMA_sanitize()
* sql.php: sanitize confirm page
* db_details_structure.php: bug #1049553, undefined $db_collation
2004-11-05 Marc Delisle <lem9@users.sourceforge.net>
* Documentation.html: new controluser behavior starting from MySQL 4.1.2
2004-11-04 Marc Delisle <lem9@users.sourceforge.net>
* libraries/common.lib.php, tbl_replace.php, sql.php, read_dump.php,
server_privileges.php: now PMA_showMessage() sanitizes the message
to defeat XSS attacks. Calling scripts use special tags like
[br], [i], [/i], [b], [/b] in the message.
* main.php: bug #1058692, call-time pass-by-reference error
* sql.php, libraries/sqlparser.lib.php: bug #1054590, handling of OFFSET
2004-11-10 Garvin Hicking
* config.inc.php: Reverted commenting out of QueryWindowWidth/Height
settings. Those can be overriden by a themes layout.inc.php,
but not neccessarily so.
2004-11-03 Michal Čihař <michal@cihar.com>
* libraries/common.lib.php: More robust PmaAbsoluteUri detection.
* libraries/sqlparser.lib.php: Escape html special chars in parser bugs.
* libraries/common.lib.php: HTTP_HOST might be unset (bug #1053310).
2004-11-02 Michal Čihař <michal@cihar.com>
* tbl_indexes.php: Fix index editing.
* sql.php: Decode table name.
* lang/czech: Updated.
2004-11-09 Garvin Hicking
* libraries/display_tbl.lib.php, libraries/common.lib.php,
browse_foreigners.php: RFE #925817 - Abstracted page selector to
its own function, now create sloped pagination to easily jump
to any wanted page.
* read_dump.php: RFE #1053039, show filename of uploaded SQL file
* sql.php, tbl_indexes.php, libraries/tbl_indexes.lib.php,
lang/*: Added checks for common problems with table indices.
Serves as a stub for future checks, currently implemented are
the ones mentioned in RFE #1044677. The check can be performed
on multiple tables by using "check table" on selected tables in
DB structure.
2004-11-02 Marc Delisle <lem9@users.sourceforge.net>
* server_privileges.php: MySQL 4.1.x compatibility for list of initials
2004-11-01 Marc Delisle <lem9@users.sourceforge.net>
* main.php: for MySQL 4.1.2+ a non-privileged user can do
a simple SHOW GRANTS to fetch current privileges, so we no longer
need the control user for this check
2004-11-01 Michal Čihař <michal@cihar.com>
* libraries/common.lib.php: Comparsion is == and not = (bug #1054758).
2004-10-29 Marc Delisle <lem9@users.sourceforge.net>
* server_privileges.php (top index): MySQLi compatibility,
use PMA_convert_using() in case of non-latin1 user table,
and fix bug #1054467 (in case of BINARY User field)
* header.inc.php: bug #1053310, undefined index under OmniSecure server
* tbl_relation.php: bug #1050424, not positionned on current db
* tbl_alter.php: bug #1054756, duplicate top menu
* lang/english: bug #1056724, typo
2004-10-28 Alexander M. Turek <me@derrabus.de>
* user_password.php, lang/*.inc.php: Allow usage of old password hashing
function.
2004-10-27 Alexander M. Turek <me@derrabus.de>
* config.inc.php, libraries/config_import.lib.php,
libraries/sqlparser.data.php: Added function OLD_PASSWORD().
2004-10-26 Alexander M. Turek <me@derrabus.de>
* libraries/sqlparser.data.php: Added OFFSET.
2004-10-25 Michal Čihař <michal@cihar.com>
* libraries/common.lib.php: Fix URI detection in case REQUEST_URI contains
full URI (patch #1044123).
* tbl_properties_structure.php, libraries/display_tbl.lib.php: Fix typo
that broke multi submits for MSIE (bug #1052674).
2004-10-24 Michael Keck <mkkeck@users.sourceforge.net>
* config.inc.php, themes/*/layout.inc.php:
bug #1050666 - Query window too small darkblue/orange theme
2004-10-23 Marc Delisle <lem9@users.sourceforge.net>
* server_privileges.php: top index for user initials
2004-10-22 Alexander M. Turek
* lang/english-*.inc.php: Grammar fix.
2004-10-22 Michal Čihař <michal@cihar.com>
* db_details_structure.php: Use "Structure" instead of "Properties" for
link to table structure.
* db_operations.php, lang/*: We switch to database here. not table.
* lang/*: strProperties is not used anywhere now.
* config.inc.php: Mention db_operations.php possibility.
* libraries/transformations/text_plain__external.inc.php: Unless admin
specifies there programs to use, it does nothing now.
2004-10-21 Marc Delisle <lem9@users.sourceforge.net>
* tbl_query_box.php: bug 1050691, missing parameters
2004-10-21 Michael Keck <mkkeck@users.sourceforge.net>
* libraries/common.lib.php: feature request #1036254
Add a link by MySQL-Error #1062 - Duplicate entry
2004-10-21 Michal Čihař <michal@cihar.com>
* [too many files to mention]: Cleanup of message displaying and
navigation reloading. Messages are now displayed bellow tabs (RFE
#1005511), navigation is reloaded once in header (I'm not sure whether I
choose correct version of reload code, we have several diferent, but it
seems to work well).
* tbl_properties_structure.php, libraries/common.lib.php,
libraries/display_tbl.lib.php: New function PMA_buttonOrImage to display
button or image to submit form and not to duplicate code on all places.
* tbl_addfield.php: Display tabs.
* mult_submits.inc.php, tbl_properties_structure.php: Allow index creating
on multiple fields (RFE #990136).
* db_operations.php: Duplicate create new table dialog (see RFE #808029).
* main.php: Don't display server choice here, if also in left frame (RFE
#984153).
* libraries/common.lib.php: Fix navigation reloading.
* server_databases.php: Show box for creating database here (RFE #869814).
2004-10-20 Marc Delisle <lem9@users.sourceforge.net>
* libraries/common.lib.php: there was already a tip icon in our collection,
thanks to Michael Keck
2004-10-20 Michal Čihař <michal@cihar.com>
* lang/czech: Update.
* tbl_relation.php: Backquote table name (bug #1050441).
* db_details_qbe.php: Backquote table name.
* libraries/display_tbl.lib.php: Comments now work for multi table selects
(bug #789647).
* server_processlist.php: Display executed SQL.
* main.php, server_common.inc.php, server_links.inc.php,
server_binlog.php, lang/*: Added support for displaying bin logs (RFE
#1011770).
* Documentation.html, config.inc.php, libraries/common.lib.php,
libraries/config_import.lib.php, libraries/auth/config.auth.lib.php,
libraries/auth/cookie.auth.lib.php: Allow simple blocking of root login
(RFE #1012971), show just Access denied in case we denied it.
* db_operations.php, db_details_links.php, db_details_structure.php:
Separate operations from structure (RFE #808029).
* tbl_move_copy.php: Remove unused PMA_myHandler().
* lang/*, libraries/tbl_move_copy.php, libraries/export/sql.php,
db_operations.php, tbl_move_copy.php: Implemented database copying (RFE
#996730), this forced separating code for copying tables.
2004-10-19 Marc Delisle <lem9@users.sourceforge.net>
* libraries/database_interface.lib.php: bug #1041667, correctly
check the server version instead of the client API version
* tbl_change.php, libraries/common.lib.php, lang/*: new function
PMA_showHint($message), new $strUseTabKey,
new light bulb image (temporary)
* server_privileges.php: bug #916117, PMA_showHint($strEscapeWildcards)
2004-10-19 Michal Čihař <michal@cihar.com>
* export.php: Use just \n for SQL exports (bug #1042521).
* libraries/read_dump.lib.php: Set correct return value (bug #1048861).
* sql.php: Fix undefined index.
* libraries/sqlparser.lib.php: Return raw query in case of error (bug
#1048826).
* main.php, queryframe.php: Handle correctly situation with no default
server (bug #1049107).
* tbl_create.php, libraries/common.lib.php: 0 as field name causes
problems (bug #1042235).
* read_dump.php, server_privileges.php, server_status.php, sql.php: Work
better in ANSI mode (bug #816858).
* lang/czech: Reordered some words.
* libraries/select_server.lib.php: Clickable active server in left frame
(RFE # 1044678).
* db_details_structure.php, tbl_move_copy.php, libraries/common.lib.php:
Fix left frame reloading after dropping table (bug #1034531).
* config.inc.php, libraries/config_import.lib.php: Offer UNIX_TIMESTAMP
also for numeric fields.
* tbl_replace.php: UNIX_TIMESTAMP can take optional parameter (bug
#1039193).
* server_privileges.php: Make non-js checkall work also for adding new
user (bug #1028055).
* libraries/zip.lib.php: Drop unneed part of header which causes troubles
to some programs (bug #1037737).
* index.php: Add frame spacing (RFE #1036013).
* libraries/db_table_exists.lib.php: Allow work on temporary tables (bug
#864984).
2004-10-17 Marc Delisle <lem9@users.sourceforge.net>
* lang/turkish update, thanks to boralioglu.
* lang/estonian: Update thanks to Alvar Soome - finsoft.
2004-10-16 Marc Delisle <lem9@users.sourceforge.net>
* libraries/dbi/mysqli.dbi.lib.php: support for compressed protocol
and CLIENT_LOCAL_FILES in mysqli
2004-10-15 Marc Delisle <lem9@users.sourceforge.net>
* pdf_schema.php: new way to define font path,
needed with the new fpdf library; also now output inline,
I find it faster this way, please tell me if you prefer
the old dialog method and why.
* tbl_change.php: bug #1038401, tabbing from value to value
* sql.php: detect this case:
SELECT DISTINCT x AS foo, y AS bar FROM sometable
and count rows correctly (in MySQL 3),
thanks to Matthias Pigulla (mp@webfactory.de)
* server_privileges.php: cosmetic: title for Edit privileges
* lang/galician: Updated, thanks to Xosé Calvo.
* lang/italian: Updates, thanks to Pietro Danesi
* lang/norwegian: Update, thanks to Sven-Erik Andersen
2004-10-13 Michal Čihař <michal@cihar.com>
* libraries/fpdf/fpdf.php: Updated to 1.52.
2004-10-13 Alexander M. Turek <me@derrabus.de>
* Documentation.html: Mike Beck's e-mail address has changed.
2004-10-13 Michal Čihař <michal@cihar.com>
* lang/sync_lang.sh: Do not overwrite utf-8 files in some cases.
* lang/czech: Fix some translations.
* libraries/transformations/text_plain__external.inc.php: Handle better
backslash.
* themes/*/img/*.gif: Remove unused gif images.
2004-10-12 Alexander M. Turek <me@derrabus.de>
* db_search.php, tbl_select.php, libraries/database_interface.lib.php:
- bug #1033388 (Illegal mix of collations for converted strings),
- don't convert if column charset and connection charset match.
* main.php, libraries/select_lang.lib.php,
libraries/auth/cookie.auth.lib.php: Automatically select Traditional
Chinese for users with a Hong Kong locale (zh-hk), as discussed in the
translations tracker (#1036528).
* lang/sync_lang.sh: Base charset for German is now UTF-8.
* lang/german-*.inc.php: Updates.
2004-10-12 Michal Čihař <michal@cihar.com>
* sql.php: Don't try to require sql.php with parameters, rather redirect
to it.
* libraries/transformations.lib.php: Strip slashes to behave like
documentation says.
* libraries/transformations/text_plain__external.inc.php: Escape special
shell chars to avoid their interpretation (bug #1044864).
2004-10-11 Marc Delisle <lem9@users.sourceforge.net>
* Documentation.html: typos and XHTML validity, thanks to Cedric Corazza
* libraries/export/sql.php: bug #1039639: under mysqli, some field types
were wrongly exported as binary
* libraries/sqlparser.lib.php, /display_tbl.lib.php: bug #967610, double
column sort with JOIN
2004-10-11 Michal Čihař <michal@cihar.com>
* tbl_query_box.php: Don't try to replace %t and %f when table name is empty.
* libraries/export/sql.php: Convert end of line chars we get from MySQL
(bug #1042521).
2004-10-08 Garvin Hicking <pma@supergarv.de>
* lots of files: Adjusted superfluous spaces, added
more CSS-ID attributes for better themeability.
2004-10-04 Michal Čihař <michal@cihar.com>
* tbl_query_box.php: Reenabled %f substitution.
2004-10-02 Marc Delisle <lem9@users.sourceforge.net>
* tbl_alter.php: field structure changes not applied (CVS version only)
* export.php: bug #1038804, insufficient space to save
2004-09-30 Marc Delisle <lem9@users.sourceforge.net>
* tbl_addfield.php: bug #1037744 (CVS version only): cannot add a field
* tbl_create.php: cannot create a new table (CVS version only)
2004-09-29 Marc Delisle <lem9@users.sourceforge.net>
* sql.php, libraries/common.lib.php: bug #1036678, incorrect appending
of LIMIT to queries, and bug #1037004, UPDATE statement not showing
* tbl_properties_operations.php: bug #1035524, cannot add comments to table
2004-09-29 Michal Čihař <michal@cihar.com>
* tbl_addfield.php, tbl_create.php, tbl_properties.inc.php, lang/*: Better
wording when adding fields (bug #991096).
* tbl_query_box.php, lang/*: Not translated text (bug #1010656).
* themes.php, lang/*: Not translated text (bug #1016610).
* tbl_properties_structure.php: Use also $strAddFields (as suggested by
Marc).
2004-09-28 Alexander M. Turek <me@derrabus.de>
* libraries/dbi/mysql.dbi.lib.php: Compatibility fix for php < 4.3
(bug #1033360), thanks to Claude Theroux.
* lang/chinese_traditional-*.inc.php: Updates, thanks to Siu Sun.
* lang/dutch-*.inc.php: Updates, thanks to Ivo Teel.
* lang/persian-*.inc.php: Added missing $timespanfmt variable.
2004-09-27 Marc Delisle <lem9@users.sourceforge.net>
### 2.6.0 released
2004-09-26 Marc Delisle <lem9@users.sourceforge.net>
* read_dump.php: improvements in detection and reload
* lang/danish: Updated, thanks to AlleyKat - dk_alleykat.
2004-09-25 Marc Delisle <lem9@users.sourceforge.net>
* lang/norwegian: Update, thanks to Sven-Erik Andersen - sven-erik.
* lang/indonesian: Update thanks to Rachim Tamsjadi - tamsy.
* lang/spanish: Updated, thanks to Daniel Hinostroza (hinostroza).
* lang/catalan update, thanks to Xavier Navarro (xavin).
* lang/polish: Updated, thanks to Jakub Wilk (ubanus).
* lang/swedish: Updated, thanks to Björn T. Hallberg (bth).
* lang/serbian: Updated, thanks to Mihailo Stefanovic (mikis).
2004-09-24 Marc Delisle <lem9@users.sourceforge.net>
* sql.php: following the fix for bug #978930, the added LIMIT was
not displayed anymore
* read_dump.php: bug #1033133, left frame not reloaded after dump read
* db_datadict.php: bug #1034299, error in SHOW KEYS for data dict
* read_dump.php: bug #1034216 open_basedir and file upload,
thanks to Dominique Rousseau - domi
2004-09-24 Michal Čihař <michal@cihar.com>
* libraries/export/sql.php: Fixed export of '0' string (bug #1033869).
2004-09-23 Marc Delisle <lem9@users.sourceforge.net>
* all themes: item_ltr.png and item_rtl.png: new solid arrow
that looks better, thanks to Efim Shuvikov
2004-09-23 Michal Čihař <michal@cihar.com>
* themes.php, css/phpmyadmin.css.php, libraries/common.lib.php: Do not
prepend $cfg['ThemePath'] with another './'.
2004-09-22 Alexander M. Turek <me@derrabus.de>
* config.inc.php, libraries/config_import.lib.php: Added "./" to the
default value of $cfg['ThemePath']. Thanks to Donny Simonton for
pointing this out.
* lang/chinese_simplified-*.inc.php: Updates, thanks to Simon (simon2san).
* lang/italian-*.inc.php: Updates, thanks to Pietro Danesi and "Vincenzo".
* lang/persian-*.inc.php: Updates, thanks to Parham Ghaffarian.
2004-09-22 Marc Delisle <lem9@users.sourceforge.net>
* tbl_query_box.php, read_dump.php: bug #1032066: when no db was
selected from the left panel, the query window's Import Files had
no submit button; also, read_dump always tried a PMA_select_db($db)
even if $db was empty
2004-09-22 Michal Čihař <michal@cihar.com>
* lang/czech: Update.
* lang/sync_lang.sh: Default to iconv, as it doesn't break some
translations as recode does.
* lang/japanese-euc.inc.php: Don't allow recoding for this one.
2004-09-22 Alexander M. Turek <me@derrabus.de>
* lang/turkish-*.inc.php: Update, thanks to boralioglu.
* lang/sync_lang.sh: Switched turkish base charset to UTF-8.
2004-09-21 Marc Delisle <lem9@users.sourceforge.net>
* libraries/dbi/mysql.dbi.lib.php: typo, thanks to Matthias Pigulla
### 2.6.0-rc3 released
2004-09-21 Alexander M. Turek <me@derrabus.de>
* db_details.php, read_dump.php, tbl_query_box.php: Allow import of
non-UTF-8 SQL dumps. Thanks to Marc for the initial patch.
FIXME: The current solution breaks the display of the executed queries.
* lang/*.inc.php, libraries/mysql_charsets.lib.php: Made
PMA_getCollationDescr() recognize the new Persian collations that will be
included in MySQL 4.1.5.
2004-09-20 Marc Delisle <lem9@users.sourceforge.net>
* read_dump.php, libraries/read_dump.lib.php: bug #1030644,
error importing when last table exported was empty
* libraries/dbi/mysql.dbi.lib.php: tell the client library to use
CLIENT_LOCAL_FILES (flag 128), thanks to Matthias Pigulla
2004-09-20 Michal Čihař <michal@cihar.com>
* Documentation.html: Add info about theme generations.
2004-09-19 Alexander M. Turek <me@derrabus.de>
* Documentation.html: Clarification.
2004-09-19 Marc Delisle <lem9@users.sourceforge.net>
* lang/latvian: Updated, thanks to Sandis Jerics (saaa2002).
2004-09-18 Marc Delisle <lem9@users.sourceforge.net>
* lang/russian updated, thanks to "nobody"
* lang/albanian: Updated, thanks to Laurent Dhima (laurenti).
2004-09-16 Marc Delisle <lem9@users.sourceforge.net>
* config.inc.php, Documentation.html: clarifications about QueryFrame
* queryframe.php: bug #1027321, drop-down databases list keeps focus,
thanks to Michael Keck
2004-09-16 Garvin Hicking <me@supergarv.de>
* libraries/display_export.lib.php: Bug #1010752 - Remove space
before <label> to be consistent throughout the panel.
2004-09-15 Garvin Hicking <me@supergarv.de>
* browse_foreigners.php, libraries/functions.js, tbl_select.php:
Fixed foreign key browser window to also work from within
Search-subpanel.
2004-09-14 Marc Delisle <lem9@users.sourceforge.net>
* server_privileges.php: stay on the form when passwords don't match
(after the js alert)
* left.php: bug #1006514, top left frame does not load in Safari 1.2.3,
workaround thanks to Ryan Schmidt
2004-09-14 Michal Čihař <michal@cihar.com>
* themes.php, libraries/common.lib.php, libraries/defines.lib.php,
libraries/select_theme.lib.php, themes/darkblue_orange/info.inc.php,
themes/original/info.inc.php: Better theme version check (bug #1023029).
* libraries/auth/cookie.auth.lib.php: Remember database when using cookie
login (bug #1027873).
2004-09-13 Garvin Hicking <me@supergarv.de>
* browse_foreigners.php: bug #1027204 - paging did not
work in foreigner browsing window.
2004-09-12 Marc Delisle <lem9@users.sourceforge.net>
* sql.php: bug #988723, sql error when ordering by count( * )
2004-09-11 Marc Delisle <lem9@users.sourceforge.net>
* lang/dutch: small update
* lang/chinese_simplified: updated, thanks to Simon - simon2san
* server_privileges.php: bug #1003238, cannot manipulate a username
like "example@nothost" where the "@" is part of the username
2004-09-10 Alexander M. Turek <me@derrabus.de>
* lang/german-*.inc.php: grammar.
2004-09-09 Marc Delisle <lem9@users.sourceforge.net>
* Documentation.html: bug #1022338: clarify about needed chown -R
on the scripts (otherwise, problems in PHP safe mode)
* tbl_change.php: bug #1024434, undefined sql_query when clicking
on Insert tab from the Insert textfile sub-page
2004-09-07 Marc Delisle <lem9@users.sourceforge.net>
* main.php: bug #992211, wrong parameters to
PMA_generate_common_hidden_inputs(), thanks to Ryan Schmidt
2004-09-07 Michal Čihař <michal@cihar.com>
* calendar.php: Minimal common.lib.php doesn't fix absolute path, so use
full one (bug #1023444).
2004-09-07 Alexander M. Turek <me@derrabus.de>
* main.php: Typo.
* libraries/sqlparser.data.php: Added keyword "SESSION".
2004-09-06 Marc Delisle <lem9@users.sourceforge.net>
### 2.6.0-rc2 released
2004-09-05 Marc Delisle <lem9@users.sourceforge.net>
* ldi_table.php: bug #1010652, wrong label,
thanks to Ryan Schmidt - ryandesign for the patch
2004-09-05 Alexander M. Turek <me@derrabus.de>
* libraries/sqlparser.data.php: Parser support for SHOW STORAGE ENGINES and
SHOW TABLE TYPES.
* tbl_create.php: Use default tab.
* tbl_properties.inc.php: Don't offer the BINARY field attribute in
MySQL 4.1.
* main.php: Check the privileges of the anonymous user, too.
2004-09-05 Michal Čihař <michal@cihar.com>
* Documentation.html: Add information about theme versions and names.
2004-09-04 Alexander M. Turek <me@derrabus.de>
* tbl_select.php: No quotes were added when querying (VAR)BINARY fields.
* db_search.php, tbl_select.php: Made search independant from the
connection charset.
2004-09-04 Marc Delisle <lem9@users.sourceforge.net>
* sql.php: bug #899430: left frame problem when lower_case_table_names==2
* libraries/database_interface.lib.php: bug #1009791: now remove non-UTF-8
choices from the drop-down (in main) for MySQL 4.1.x
* Documentation.html: added some missing variables and new FAQ 2.7
about using and creating themes
2004-09-03 Marc Delisle <lem9@users.sourceforge.net>
* main.php, server_privileges.php, libraries/common.lib.php:
replace charset introducers by CONVERT USING,
to support servers where the mysql.* tables are not in latin1
* libraries/database_interface.lib.php: do not add BINARY and VARBINARY
twice in the drop-down list of field types
2004-09-03 Alexander M. Turek <me@derrabus.de>
* Documentation.html: Typos; added a note about the deprecated MySQL
versions 4.1.0 and 4.1.1.
2004-09-03 Michal Čihař <michal@cihar.com>
* libraries/string.lib.php: Encoding tis-620 is not multibyte (bug
#1013787).
* libraries/display_export.lib.php: Updated texts to fit Excel 2003
behaviour (bug #1018457).
* main.php, themes.php: Escape theme names (bug #1016608).
* lang/hebrew-utf-8.inc.php, lang/sync_lang.sh,
libraries/select_lang.lib.php: Hebrew now also has utf-8 version.
2004-09-01 Marc Delisle <lem9@users.sourceforge.net>
* libraries/auth/cookie.auth.lib.php: bug #939531: when people upgrade
phpMyAdmin on the same directory, the previous cookie pma_cookie_username
was used but produced an Undefined offset in blowfish.php, because
on previous PMA versions it was not encoded the same way. Now this old
cookie is not used. Users have to reenter their username (not a big
impact IMO)
2004-09-01 Michal Čihař <michal@cihar.com>
* libraries/export/sql.php: Fix empty BLOB export (bug #1020052).
2004-08-29 Marc Delisle <lem9@users.sourceforge.net>
* server_privileges.php: bug #1007870, illegal mix of collations
for operation UNION
2004-08-28 Marc Delisle <lem9@users.sourceforge.net>
* tbl_properties_structure.php, tbl_properties.inc.php,
libraries/sqlparser.data.php, /database_interface.lib.php:
support for VARBINARY and BINARY field types
2004-08-27 Marc Delisle <lem9@users.sourceforge.net>
* tbl_relation.php, libraries/display_tbl.lib.php: bug #1016997,
wrong db name generated in SHOW KEYS
2004-08-26 Marc Delisle <lem9@users.sourceforge.net>
* index.php, libraries/common.lib.php: bug #1006011: now we save
the chosen connection collation into a cookie
* lang/japanese: updated, thanks to Tadashi Jokagi (elf2000)
* lang/hebrew, turkish: bug 1016609: <br> tags
2004-08-25 Michal Čihař <michal@cihar.com>
* main.php: Don't show port after verbose name (bug #1013401).
2004-08-23 Michal Čihař <michal@cihar.com>
* scripts/create-release.sh: Support for snapshots outside sourceforge.
* libraries/export/sql.php: Fix exporting of TIMESTAMP (bug #1013730).
2004-08-22 Michal Čihař <michal@cihar.com>
* sql.php: Don't unset $sql_limit_to_append, we need it later (bug
#978930, found by Marc).
2004-08-22 Marc Delisle <lem9@users.sourceforge.net>
* lang/norwegian: Update, thanks to Sven-Erik Andersen - sven-erik.
* lang/estonian: Update thanks to Alvar Soome - finsoft.
* lang/chinese_simplified: updated, thanks to Simon - simon2san
* lang/latvian: Updated, thanks to Sandis Jerics (saaa2002).
* lang/bulgarian: Updated, thanks to Stanislav Yordanov (stanprog).
* lang/thai: Updated, thanks to Arthit Suriyawongkul.
2004-08-21 Marc Delisle <lem9@users.sourceforge.net>
* themes/darkblue_orange/img/logo_left.php: transparent version,
thanks to Michael Keck
* db_datadict.php, tbl_printview.php, transformation_wrapper.php:
commands out of sync
* tbl_indexes.php: optimize: remove unneeded row count
* libraries/display_tbl.lib.php: foreign key tooltip not displaying
in mysqli
* tbl_replace.php: could not upload a binary field in mysqli
* libraries/transformations.lib.php: could not change MIME type, etc
in mysqli
* lang/danish: Updated, thanks to AlleyKat - dk_alleykat.
2004-08-19 Marc Delisle <lem9@users.sourceforge.net>
* lang/*: bug 1009667: do not spell Ms Excel but MS Excel
2004-08-19 Michal Čihař <michal@cihar.com>
* read_dump.php: Fixed one case of reload detection (I forgot to update
second regexp on 2004-08-16) (bug #1011479).
2004-08-17 Michal Čihař <michal@cihar.com>
* sql.php: Work with $display_query only if set (Marc spotted this out).
* libraries/display_export.lib.php: No options text should not be bold red
(bug #1010759).
2004-08-17 Marc Delisle <lem9@users.sourceforge.net>
* tbl_select.php, config.inc.php, libraries/config_import.lib.php,
libraries/common.lib.php: bug #983735: move search operators to
config file, and set "LIKE" as default operator instead of "LIKE %...%",
for performance reasons
2004-08-16 Alexander M. Turek <me@derrabus.de>
* libraries/relation.lib.php: Fixed some collation problems with the
relational tables (bug #995359).
2004-08-16 Marc Delisle <lem9@users.sourceforge.net>
* all .../theme_right_css.php: bug #1009661, typo,
thanks to Ryan Schmidt (ryandesign)
2004-08-16 Michal Čihař <michal@cihar.com>
* read_dump.php: Fix handling of comments -- and # (bug #1009494).
* libraries/relation.lib.php: Fix typo, CONVERT is for MySQL >= 4.1 and
not for MySQL >= 4.0.
* sql.php, libraries/common.lib.php: Better appending of LIMIT (bug
#978930).
2004-08-15 Marc Delisle <lem9@users.sourceforge.net>
(Patches from Michael Keck)
* left.php, queryframe.php, themes.php: bug #1005479: was using
a hardcoded charset
* themes/.../themes_left.css, /themes_right.css: new style for
better vertical alignment
2004-08-13 Michal Čihař <michal@cihar.com>
* libraries/read_dump.lib.php: Fix possible undefined index (bug
#1008232).
* scripts/create-release.sh: Rename config.default to config.default.php.
2004-08-12 Michal Čihař <michal@cihar.com>
* db_details_structure.php: Inconsistency of drop/empty links (bug
#989705).
* tbl_addfield.php, tbl_properties.inc.php, tbl_properties_structure.php:
Change look of adding fields into table (bug #991095).
* many files: I again did some XHTML validation, so removed few of most
obvious errors, but there are still many, mostly missing alt attributtes
for images and wrongly nested tags.
* left.php, queryframe.php: Replace htmlentities with htmlspecialchars
(bug #1008002).
* libraries/config_import.lib.php: Remove compatibility code for colors.
* lang/czech: Improved message.\
* main.php, themes.php, libraries/common.lib.php,
libraries/defines.lib.php, libraries/select_theme.lib.php,
themes/darkblue_orange/info.inc.php, themes/original/info.inc.php:
Implemeted versioning and naming for themes (RFEs #991642 and #991645).
* left.php: Use always natsort and not natcasesort in one case, it caused
inconsistency (bug #1008120).
2004-08-11 Michal Čihař <michal@cihar.com>
* tbl_replace.php: Do not empty protected values (bug #1006812).
* libraries/display_tbl.lib.php: Wrong parameters for PMA_DBI_free_result
(bug #1007287).
* tbl_indexes.php, libraries/display_tbl.lib.php: Fix grabing indexes with
MYSQLI_USE_RESULT (bug #1007286).
2004-08-10 Michal Čihař <michal@cihar.com>
* libraries/tbl_change.js: Forcibily use 10 as base for parsed numbers,
otherwise accidentally octal numbers are expected (part of bug
#1005865).
2004-08-09 Marc Delisle <lem9@users.sourceforge.net>
* lang/turkish update, thanks to Bora Alioglu
* libraries/get_foreign.lib.php: bug 1005826, problem with foreign key
dropdowns, thanks to Joerg Klein (j0erch) for the fix
2004-08-08 Marc Delisle <lem9@users.sourceforge.net>
* libraries/relation.lib.php:
bug 1005414, undefined offset when no display field has been defined;
bug 1004546, sort error in dropdown list of foreign values;
incorrect result was freed
* libraries/relation.lib.php: use natural order sort according to config
* db_details_structure.php, pdf_pages.php, pdf_schema.php: make it work
with mysqli extension
* scripts/upgrade_tables_mysql_4_1_2+.sql: new script to upgrade pmadb
on MySQL 4.1.2
* libraries/bookmark.lib.php: bug (mysqli)
* tbl_query_box.php: field list does not show (mysqli)
* libraries/sqlparser.lib.php: cannot copy a table structure (MySQL 4.1.x)
### 2.6.0-rc1 released
2004-08-08 Michal Čihař <michal@cihar.com>
* calendar.php: Include correct stylesheet (bug #1005421).
2004-08-07 Marc Delisle <lem9@users.sourceforge.net>
* lang/turkish update, thanks to Bora Alioglu
* lang/slovak: Updated, thanks to Lubos Klokner (erkac)
* lang/polish: Updated, thanks to Jakub Wilk (ubanus).
* lang/dutch: bug 1000683, backslash typo
* libraries/mysql_charsets.lib.php: bug 1005120, duplicated line
2004-08-06 Marc Delisle <lem9@users.sourceforge.net>
* tbl_properties_operations.php: bug 1004523, now display table options
according to the possibilities of the table types
2004-08-06 Michal Čihař <michal@cihar.com>
* tbl_change.php: Do not free result, we need it later.
* tbl_relation.php: Some functions do not take parameters (bug #1000021).
2004-08-05 Marc Delisle <lem9@users.sourceforge.net>
(Patches from Michael Keck)
* index.php: names and ids for framesets in the noscript section
* updated themes screenshots
* left.php: bug 998698, db dropdown refresh
(me)
* lang/galician: Updated, thanks to Xosé Calvo.
* lang/swedish: Updated, thanks to Björn T. Hallberg (bth).
* lang/japanese: updated, thanks to Tadashi Jokagi (elf2000)
2004-08-03 Marc Delisle <lem9@users.sourceforge.net>
(Patches from Michael Keck)
* libraries/display_tbl.lib.php: bug 993694, clicking on last record
button reaches a page where the current page number is not the last one
* main.php: - removed bug with hashform.hash
- removed id for input field 'new_database', because it may be
too large for the one lined create db form
- bug #980232 'Javascript error on index page'
* db_details_common.php: removed bug with hashform.hash
* index.php: - given names and ids for framesets, please see below 'queryframe.php'
* queryframe.php - javascript function for dynamic resizing the rows
in the left frameset 'leftFrameset'.
(bugs: #993648, #989581, #988897)
2004-08-02 Marc Delisle <lem9@users.sourceforge.net>
* libraries/database_interface.lib.php, /select_lang.lib.php:
bug 968174: now, in MySQL 4.1.0+ we auto-switch the language to
the corresponding -UTF-8 version (if it exists); also, now
the default language is the non-UTF-8 one
2004-08-02 Michal Čihař <michal@cihar.com>
* libraries/export/sql.php: Removed unused code.
2004-08-01 Marc Delisle <lem9@users.sourceforge.net>
* tbl_change.php, libraries/relation.lib.php: bug 1001159, Commands
out of sync on Insert
* tbl_move_copy.php: bug 995098, cannot copy table data only
* libraries/dbi/mysqli.dbi.lib.php: use faster AND comparison for flags,
as suggested by Michal
* libraries/export/sql.php: workaround for datetime export because
mysqli under MySQL 4.1.3 reports a datetime as binary
2004-07-31 Alexander M. Turek <me@derrabus.de>
* tbl_change.php, tbl_replace.php, libraries/relation.lib.php: Small
optimizations, freed some results (thanks to Marc for the one in
tbl_replace.php).
* lang/sync_lang.sh: Updated sync script for the new names of the chinese
language files.
2004-07-30 Alexander M. Turek <me@derrabus.de>
* lang/chinese_*.inc.php, libraries/select_lang.lib.php: More consistant
naming for the chinese language files.
2004-07-30 Marc Delisle <lem9@users.sourceforge.net>
* lang/hungarian: updates, thanks to Peter Bakondy
* lang/spanish: Updated, thanks to Daniel Hinostroza (hinostroza).
* lang/danish: Updated, thanks to AlleyKat - dk_alleykat.
2004-07-29 Marc Delisle <lem9@users.sourceforge.net>
* libraries/sqlparser*.php: bug 965026, support of GROUP_CONCAT()
2004-07-28 Michal Čihař <michal@cihar.com>
* tbl_properties_structure.php: Allow to create primary key when there was
none before (bug #996246).
2004-07-27 Marc Delisle <lem9@users.sourceforge.net>
* libraries/sqlparser*.php: bug 981343,
cannot copy a table with a timestamp (MySQL 4.1.2)
2004-07-25 Marc Delisle <lem9@users.sourceforge.net>
* main.php, libraries/common.lib.php: bug 997682:
illegal mix of collations
* server_privileges.php: same bug
FIXME: check privileges for a db
2004-07-23 Marc Delisle <lem9@users.sourceforge.net>
* Documentation.html: take into account the new script to
create tables for the infrastructure
2004-07-23 Alexander M. Turek <me@derrabus.de>
* config.inc.php, libraries/config_import.lib.php,
libraries/select_lang.lib.php: Made phpMyAdmin aware that there is a
charset called gbk.