-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
11375 lines (7650 loc) · 270 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
2010-04-21 brettp
* ., CHANGES.txt, version.php: Tagged 1.7.1
2010-04-21 cash
* cleaning up [5822] - putting elgg_format_url() in the same
location in elgglib.php
2010-04-20 cash
* Fixes #2075 - applied Melvin's patch to the foaf views
* merged [5603] into 1.7 branch from the trunk
2010-04-20 brettp
* Fixed the previous fixes for Insanoday 2010.
2010-04-19 brettp
* Refs #2074: container_guid support added to search backend, but
no interface for it yet.
2010-04-17 brettp
* Merged previous commit into 1.7.
2010-04-16 brettp
* type_subtype_pair correctly rewrites to type_subtype_pairs in
elgg_get_entities().
2010-04-16 cash
* Fixes #2065 - added missed .
* Fixes #2069 - when a file is updated, it needs to be saved to
force attributes to database
* Fixes #2062 - use mb wrapper functions on file names in file
plugin upload action
* Fixes #2067 - group forum comments now removed from river when
deleted
2010-04-15 brettp
* Version bump.
2010-04-14 cash
* profile icons need to be scaled if smaller than asked for
2010-04-14 brettp
* Fixes #2039: Added indicator.gif.
2010-04-13 cash
* #refs #2035 - added profile icondirect back to the 1.7 branch
* fix for previous - subtype depends on type so type must be
specified when retrieving entities based on subtype
* Refs #2041 - added category listing page and standardized plugin
2010-04-12 cash
* thewire rss feed did not have a proper guid - fixed this
2010-04-09 brettp
* Fixes #2053: Tags return the correct title in search for users
and groups.
* Reopens #2028: Removed clearfloat class to fix search results
displaying for entities. Removed unnecessary CSS. Updated
comments view to display the same as entities. Comments still
need to support the new overrides. The readme file needs to be
updated to reflect the changes.
2010-04-06 brettp
* Merged #5634 to 1.7.
* Merged 5624 from trunk.
2010-04-05 brettp
* Fixes #2028: Pull in Justin's changes to allow search overrides
for url, time, and icon.
* Fixed installation problems after [5584].
2010-04-03 cash
* get_entities() was not passing a limit of 0 to
elgg_get_entities()
* fixed bug caused by display name collision in friends picker
* those who have iconv can use it with friendly titles by
uncommenting
* Fixes #1976 - comments now have a search view for RSS
* Refs #2016 - profile edit action can now handle multi-dimensional
arrays
* fix for previous commit
* Fixes #2017 - htmlawed now handles multidimensional arrays
* if first or last word consists of all non-safe url characters you
end up with - in odd spot. This fixes that.
* blog owner's name was not being set in page title
* fixed minor layout issue where the To: and icon were flipped when
composing a message
* Fixes #2040 - forward user to inbox after sending a message
* updated changelog for today's commits
* Added remove_widget_type() so that sites can control what widgets
are available
* Made the widgets for the various content plugins consistent
* Fixes #2013 - adds blog widget
* Fixes #1223 - skip notification methods that no longer exist
* Fixes #1308 - if subtype front is not defined, externalpages was
throwing a warning
2010-04-03 brettp
* Added 1.7.1 changes to CHANGES.txt
* Refs #2015: Reverted output/url to not force http:// prefixes on
URLs.
2010-04-03 cash
* Refs #2005 - javascript not corrupted by logging at DEBUG/WARNING
level
2010-04-02 brettp
* Fixes #2027, fixes #1265: Moved friendly time and friendly title
into views that can be overridden by plugins.
* Fixes #671: Moved admin flag from metadata to users_entity table.
+5 speed.
2010-04-02 cash
* Refs #1976 - added rss search view to the wire
2010-04-01 brettp
* Added a few more metadata tests.
* Cleaned up some of the sql where functions for
elgg_get_entities_from_metadata().
* Enable filtering on search queries.
2010-04-01 cash
* Fixes #1989 and refs #2035 - profile icondirect should work for
those using CGI
* Refs #2010 - file download action restored and exempted from
token requirement - does not need to be merged into trunk
2010-03-31 brettp
* Fixes #1928: UTF8 migration moved from db to code to detect if it
is required. Bumped version to 1.7.1 (2010033101).
2010-03-31 cash
* Fixes #1945 - add_to_river now checks for view with default
viewtype
* Added an error message to explain denied access to closed group
pages
* Fixes #2011 - access check for closed groups for group plugins
2010-03-30 brettp
* Fixes #2022: get_entities_from_annotations() rewrites owner_guid
to annotation_owner_guids. Cleaned up some leftover code. Added
maxtime back to select statement.
* Fixes #2022: Added abilty to get entities by metadata/annotation
owner_guid. DRY'd up the metadata and annotations SQL. As an
added bonus, you can now sort by annotation value if so inclined.
2010-03-30 cash
* Refs #1976 - Search now includes a link to RSS page
* Fixes #2019 - correctly checks the container permissions based on
user id
* Fixes #2020 - all changes to thewire that were lost are
intregated back in
* Refs #2020 - wire does not integrated with activity dashboard
anymore
* Refs #2020 - wire post is not turned into tag array because we
have free text search now
2010-03-29 cash
* Fixes #2016 - profile edit action can now handle 1D arrays
* Fixes #1967 - cleans up forward()
2010-03-28 cash
* better fix for previous commit
* fixes warning in notification settings when no friends selected
* fixed bugs in friend picker for notifications - was not i18n
friendly and not handling case where no friends selected yet
* cleaned up php code in notification's forminternals and fixed
open link tag - I'll handle merge into trunk
* made the friend picker in notifications multi-byte string
friendly
2010-03-26 brettp
* Refs #2015: It's too early. Using the correct variable.
* Fixes #2015: output/url view again appends http:// to the value
if missing.
2010-03-26 cash
* removed undeclared variable $area1 from blog index
2010-03-25 cash
* Fixes #2008 - fixed some sloppy code in the embed plugin so that
pagination works
-- This line, and those below, will be ignored--
M mod/embed/views/default/embed/pagination.php
M mod/embed/views/default/embed/media.php
* Fixes #1937, refs #1781 - stripping tags moved into plugin
actions until better solution
* missed file for revision [5441]
* Fixes #2001 - setting subtype correctly in clone method
* Fixes #1925 - member search by tag now works
2010-03-24 cash
* tag cloud functions are deprecated in 1.8
2010-03-22 cash
* Refs #1991 - owner_guid needs to be set to NULL when setting
container_guid
2010-03-19 cash
* Fixes #1902 - strips slashes from url encoded titles for
bookmarks
* Fixes #1999 - replaces calls to mysql_real_escape_string() with
sanitise_string()
2010-03-19 brettp
* Merged 5426 from trunk to 1.7.
* Merged 5424 into 1.7 branch.
* Fixes #1988: Corrected metadata case sensitivity in
list_entities_from_metadata().
* Fixes #1992: Removed incorrect extended view in the wire.
2010-03-19 cash
* Fixes #1940 - db settings are checked before settings.php is
created
* Fixes #1993 - links in tag cloud now properly hit search pages
* Fixes #1991 - only sets container to owner if container not
defined for get_entities()
2010-03-19 brettp
* Fixes #1994: Missing views now throw a NOTICE instead of a
WARNING.
2010-03-18 cash
* Fixes #1951 and #1952 - tag lib now has elgg_get* interface
2010-03-17 brettp
* Fixes #1818: Tinymce's init uses a class selector on text areas
to avoid hijacking plaintext fields on the same page.
2010-03-17 cash
* Refs #1976 - adds RSS layout view for search
2010-03-16 cash
* Fixes #1984 - missed the echo of description on the edit form for
[5413]
* Fixes #1984 - front page preview code is commented out correctly
now
* Fixes #1927 - group search by tag works now
* Fixes #1924 - groups plugin now uses invite strings for
invitations
2010-03-15 cash
* Fixes #1953 - removes unnecessary html in page handlers of blogs
- this is a 1.7 branch only change
* Group discussion RSS feed was not displaying text of post because
it was saved in annotation
* Fixes #1980 - Group rss feed was using owner rather than
container
* Fixes #1968 - send messages pagination now works like inbox
* Fixes #1977 - strip tags from user's display name
* Fixes #1469 - install pages will not be cached now by the browser
2010-03-14 cash
* Fixes #1982 - fixed no groups string in custom index plugin
2010-03-13 cash
* Fixes #1973 - removed tags from external pages plugin as not
needed with the new search in Elgg 1.7
2010-03-12 cash
* Fixes #1969 - missing echo in pages welcome view
2010-03-11 cash
* Refs #1947 - fixes pagination for thewire plugin
* Refs 1947 - fixes pagination for the pages plugin
* Only showing div for delete group when the group has been created
on edit form
* Refs #1947 - Fixes pagination for groups plugin
* Fixes #1545 - diagnostics plugin does not throw a ton of warnings
now
* Fixes #1944 - full_url() now correctly handles standard https
port
* Fixes #1961 - reported content now including report object in
plugin hook
* Fixes #1949 - defined global $CONFIG in user validation by email
page handler
2010-03-10 cash
* Fixes #1954 in 1.7 branch - logged out users cannot reply to wire
posts
* refs #1947 - fixes pagination for bookmarks
2010-03-09 brettp
* Merged trunk:5338 into 1.7 branch. Fixes problem with view type
when using deprecated list_entities().
2010-03-09 cash
* updated language in groups plugin - you 'post' to a discussion
forum rather than 'save'
* fixed pagination for User Administration
* refs #1947 - fixes pagination for file plugin
* fixed pagination for latest activity on front page
* fixed a minor issue with a blog menu item
* refs #1947 - fixes offset handling for blog pages
* Fixes #1950 - passes offset so that pagination works on dashboard
latest activity page
* fixed comment in core language file
2010-03-08 cash
* Refs: #1927 - groups plugin saves tags as "interests"
* fixes #1931 - tag search highlighting now case insensitive
* fixes 1941 - create page form is now sticky
2010-03-06 cash
* better upgrade instructions
2010-03-05 cash
* Fixes #1939 - offset is now passed to the new elgg_list_entities
function from group listing page
* A better error message for debugging "file is missing an owner"
exception
2010-03-03 root
* Added 1.7 mods to the branch and tag
2010-03-02 root
* Refactoring the core SVN repo.
2010-03-02 brettp
* Updated changes file for 1.7 release.
* Fixes #1562: Added a default value for entities.last_action in
the schema and as an upgraded. Bumped version number to 1.7
final.
* Updated the the default search entity view to check for users and
groups and properly display their profile icons.
2010-03-01 brettp
* Fixing punctuation in upgrade strings.
* Refs #1562: Updated requirements for Elgg.
* Fixes #1566: Rewriting calls to get_group_members() to use 1.7's
constant for site_guid.
* Fixes #1558: Applied Cash's patch. Added unit tests to test for
regressions for any bugs fixed in trac.
* Fixed unit tests for exportable values after [3977].
* Fixes #1563: Added time_updated and site_guid to the export vals.
* Changed search language array variable name.
2010-02-26 brettp
* Fixes #1540: Added site_guid to get_user_access_collections().
* Refs #1553: Corrected profile link in friending notification.
* Fixes #1555: Added missing call to
elgg_get_registered_tag_metadata_names() and defined missing
variable.
* Added login to the list of actions not requiring a security
token.
2010-02-24 brettp
* Version bump.
* Fixes #1542: Pulled in Kevin's patch to add ability to sort by
metadata. Added unit tests for this.
2010-02-23 brettp
* Refs #1543: Added support to have pass an array as a value in the
metadata_name_value_pair option of
elgg_get_entities_from_metadata().
Added unit tests for elgg_get_entities_from_metadata().
Cleaned up some documentation for
elgg_get_entities_from_metadata().
2010-02-22 brettp
* Fixes #1528: Correctly throwing exceptions for objects, groups,
and users.
2010-02-22 cash
* river plugin is defunct so does not need to be enabled on install
* Fixes #1544: plugin hook for diagnostics now for entity "system"
2010-02-22 brettp
* Fixes #1531: Correctly implemented dates for friendly times. No
more coding while watching the Olympics!
2010-02-22 cash
* Fixes #1541: javascript now correctly included in output/url view
2010-02-21 cash
* Fixes #1517 - let web server set content length on xml files
2010-02-21 brettp
* Deprecated elgg_validate_action_url() by
elgg_add_action_tokens_to_url(). Updated elgg_deprecated_notice()
to include the file & line of the caller. Updated core to use
elgg_add_action_tokens_to_url().
2010-02-21 cash
* Refs #1517: only encode <,>, and & for strings in xml
2010-02-21 brettp
* Refs #1538: Removed action_gatekeeper() from action files in
core.
* Fixes #1539: Removed line endings from htaccess_dist.
2010-02-21 cash
* Apache's MultiViews was matching the rest page handler
incorrectly
2010-02-20 brettp
* Refs #1531: Added full time and dates to friendly time stamptes
via acronym tags.
* Fixes #1523: Updated search to use
ELGG_ENTITIES_NO_VALUE/ANY_VALUE and removed some commented out
code.
2010-02-19 brettp
* Fixes #1421: Banning and unbanning users invalidates the memcache
entity.
* Corrected fullview call in users admin section.
* Refs #1504: Removing revert option from widget draggables to
avoid fly away effect in IE 7.
* Fixed a bug in widget layouts that caused the "edit page" link to
not work if no widgets were defined.
* Fixes #1532: Added security tokens to friend picker when in form
mode.
* Fixes #1535: Corrected double replace for URL in RSS title view.
* Fixes #1519: Corrected site_guid in create_access_collection().
2010-02-18 brettp
* Getter API test: Moved the setup and tear down into the construct
and destruct methods. Fixed a few new tests that were failing
because of sorting by time.
2010-02-17 brettp
* Fixes #1488: Removed use of deprecated functions in core.
* Refs #1523: elgg_get_entities() uses the constants for defaults
and conditionals. Added some tests to check for no subtypes.
Updated the documentation.
* Fixes #1526: Big honking warning added to unit tests. Getter test
also deletes its subtypes now.
* Updated docs for search.
* Fixes #1527: Logout doens't require an action token. This is a
temporary fix until #1509 is implemented.
* Fixes #1499: User and group search default to ignoring subtypes
to return all entities.
2010-02-16 brettp
* Fixed incorrect variable calls in search.
* Not using elgg_get_entities_from_metadata() for tag search
because of performance issues. Switched to custom WHERE / JOINs
with elgg_get_entities().
* Removing embed extended view from core.
2010-02-13 brettp
* Cleaned up tag searching so you can search on a specific tag.
Useful in search so a tag in "Things I like" won't match a tag in
"Things I hate."
2010-02-12 brettp
* Can't type hint for strings.
* Closes #1506: Added elgg_register_tag_metadata_name(),
elgg_get_registered_tag_metadata_names(), and
ElggEntity::getTags(). Search on tags updated to use registered
tag names instead of hard-coded 'tags' metadata name.
* Fixes #1510: Added elgg_get_file_list(). get_library_files()
wraps to this function with a deprecation notice for any plugin
authors using it to auto-load files.
* Fixes #1512: Using a helper function for mb_parse_str() instead
of wrapping it exactly.
2010-02-12 cash
* updated documentation on the REST API user authentication
2010-02-11 brettp
* Fixes #1501: Setting ini for mbstring.internal_encoding to utf8
to work around a PHP bug. Replaced calls to parse_str() with
elgg_parse_str().
* Fixes #1507: $vars['baseurl'] used instead of undefined $baseurl
in pagination view.
2010-02-11 cash
* fixes #1505 - some lazy css was impacting opera for checkboxes -
overriding border and padding properties inherited from input
selector
2010-02-11 brettp
* Made the output/url view backward compatible for the few plugins
that used it.
2010-02-10 brettp
* Remove version from default theme's css.
2010-02-09 brettp
* Fixes #1503, fixes #1474: Library files are loaded using a
hard-coded list to better deal with removed files. Also, ~4%
performance increase per page load on my server!
* Correcting the corrected documentation.
* Documentation correction in search.
2010-02-08 brettp
* Updated copyright for core plugin manifests.
* Fixes #1496: delete_access_collection() invalidates the access
collection cache before attempting to delete. Removed a misplaced
unset() in a unit test that was causing test objects not to be
properly deleted.
2010-02-07 cash
* finished the fix to #1492
* more user friendly section title on user stats page
* fixed punctuation issue on install instructions
* tweaked some documentation on the REST API
2010-02-07 brettp
* Correcting documentation for elgg_get_entities_from_metadata().
2010-02-07 dave
* & replaced by & in the header and alt added to some header
graphics
* updated
2010-02-06 brettp
* Refs #1200: Added tests to test for false being returned with
elgg_get_entities(). Disabled execution time during unit tests.
* Fixes #1492: Removed usage info collecting from installation.
* Fixes #1493: Updated schema to set auto_increment IDs for
access_collections to 3 to avoid overwriting default values with
group / shared access ACLs.
* Fixes #1491: Removed mistakingly assigned input-password with
input-textarea.
2010-02-06 cash
* missing new on upgrade_details object creation
* fixes #1486 - elgg_dump now works when sending to server error
log
2010-02-06 brettp
* Fixes #1404: Added input-password rules in default css.
2010-02-05 brettp
* Fixes #1483: Reset password emails forward to a confirmation page
handler instead of directly to an action.
* Fixes #1212: Removed unused code.
* Fixes #1486: elgg_log() can now log arrays and objects to
error_log().
* Fixes #1319: Applied patch for missing xml-rpc <value> tag.
* Fixes #1481: Applie Mike's patch and created function
elgg_http_add_url_query_elements() to handle what the pagination
view was trying to do.
2010-02-04 cash
* updated copyright to 2010
2010-02-04 brettp
* Refs #1200: Changed logic in
elgg_get_entity_type_subtype_where_sql() to return FALSE if there
are no valid subtypes passed. Ignores all invalid subtypes. Added
(partial) tests for elgg_get_entities() types and subtypes.
2010-02-03 cash
* updated install instructions to encourage more use of the wiki
instructions/troubleshooting and discourage setting data
directory to 777 as default
* fixed a comment in rss pageshell
2010-02-01 brettp
* PHP complains about not casting the timestampt to int for use in
date().
* Added error checking to clear_metadata_by_owner().
* Fixed incorrect variable for subtype in get_entity_dates().
* Fixes #1328: Removed rows and cols from the installation
textareas and added CSS to format width/height at 100% to make it
easier to read and select.
* Fixes #340: add_menu() and make_register_object() deprecated.
* Fixes #1166. get_installed_translations() only calculates
completion if admin is logge din.
* Fixes #1406: get_entity_dates() supports order by.
* Adding some \ns between the SQL error and the query in the
database exception.
* Fixes #1398: autop() doesn't call missing clean_pre() function.
* Fixes #1376: added ElggEntity::removeRelationship().
* Fixes #1478: uh....how did that get in there?
* Fixes: #1475. elgg_http_build_url() correctly sets port number.
* Fixes #1314: Filestore opens read-only with rb instead of r+b.
* Refs #1290: Changed email addresses are checked in
action:email/save
* Fixes #1261: Exceptions force an HTTP recache.
* Fixes #1213: delete_relationship() triggers delete:relationship
hook.
* Fixes #1211: page_owner() sets the page owner after figuring it
out.
* Updated documentation for elgg_get_entities().
* Fixes #1325: ElggEntities::countEntitiesFromRelationship()
support inverse relationships.
* Fixes #1473: Simple patch to create a view for the registration
page.
* Fixed incorrect deprecated warning.
* Refs #1079: elgg_view() casts view to a string before attempting
to call views.
* Fixes #678. Friending appears in the river for invited new users.
* Put the can_write_to_container() plugin hook in the right place
after [3871].
* Add elgg_deprecated_notice() so we don't have to re-write all the
elgg_log() deprecated notices to register_error()s. Updated
current ones to use this.
2010-01-31 brettp
* Removing var_dump().
* Deprecated old search functions and views.
* Fixes #1164: can_write_to_container() now sends default values
through container_permissions_check hook.
* Somehow missed deleted a { on the last commit. All better now.
* htmlawed no longer creates tags with extra spaces (<p >).
* Fixes #1289: Pragma: public header added for RSS feeds.
* Fixes #804: A relationship is created between a new user and the
site it was created on.
* Fixes #959: Added elgg_http_remove_url_query_element() to remove
a GET element instead of using faulty regexp.
2010-01-30 brettp
* Changed array_key_exists() to isset() in
elgg_validate_action_url().
* Added checking for $query array in elgg_validate_action_url().
* Setting a default value to avoid notices.
* Fixes #1425, Fixes #1341: Upgraded htmlawed to latest. Altered
the htmlawed attribute filtering function to return <attr="val">
for proper linking in parse_urls(). Added background-color as a
non-filtered style attribute.
* Refs #1425: Cleaned up regexp for parlse_urls().
2010-01-29 brettp
* Fixes #1468: Cleaned up logic for enabling and disabling plugins.
Checking for arrays when metadata returns only a single enabled
plugin.
* Removed unneeded owner block icons from admin.
* Added db migration 2010012901 that adds last_action column to
entities table.
Bumped version number to 1.7b (2010012901).
* Fixes #1472: get_entity_relationships() supports inverse
relationships.
* Fixes #1470, Fixes #1471: elgg_view_regenerate_simplecache() no
longer triggers the pagesetup/system hook. Fixes problems with
creating the submenu.
2010-01-28 brettp
* Updated changes for previous commit.
* Corrected clear_plugin_setting() to only remove a single plugin
setting instead of all setting for a plugin.
Added clear_all_plugin_settings() to remove all settings for a
plugin.
2010-01-28 cash
* changed my email address to web site in contributors file
2010-01-28 brettp
* Fixes #1049, Fixes #1435: Admin-created users and first admin
user are marked as validated to prevent inaccurate "Please
validate your account" messages and emails.
2010-01-27 brettp
* Fixes #1419: Added remove_from_river_by_annotation(). Deleting
annotations now deletes their river entry.
* Updated changes.
* Fixes #1465: Added unregister_event_handler() and
unregister_plugin_hook().
* Fixes #1464: A new session is created in logout() after
destorying the old session to display old $_SESSION['msg']
messages.
2010-01-26 brettp
* Updated changes for the display name change.
* Display names are limited to 50 chars and have HTML tags removed.
* Bumped version number in README.
* Fixed a typo in css that broke everything in FF 3.6.
* Fixes #1454: Applied Cash's patch. Bad plugins are automatically
disabled and a notice is displayed instead of breaking the site.
2010-01-25 brettp
* Fixes #1450, Fixes #1461: Using $_SERVER['REQUEST_URI'] to pull
in GET params on apache servers.
2010-01-24 brettp
* Correctly forwarding messages among multiple forwards
(action_gatekeeper() -> index -> dashboard would drop messages
generated in action_gatekeeper()).
* Refs #1450, Refs #1461, Refs #1460: Install now clears out views
caches.
* Masking dbpassword in dianostics file.
* Fixes #1460, Fixes #1459: Tokens are not required to disable a
plugin or install. This allows users to disable plugins that
overwrite admin pages without tokens.
* Refs #1459: Added missing security tokens for failsafe
(installation) view.
* Removing calls to engine/start.php in action files.
* Added best practices to CODING.txt.
2010-01-23 brettp
* Fixed missing ) causing a WSOD.
* Fixes #1455: Updated search URL for admin user search. (The old
one worked, but didn't limit to users.)
2010-01-22 brettp
* Changed uservalidationbyemail to not use an action and cleaned up
some of its code.
* Fixed a bug preventing messages and warnings from passing during
a forward().
2010-01-21 brettp
* Updated views to use output/url with action flag set.
* Removed output/action_link view as it duplicated much of
output/url.
Improved output/url view.
* Removing debug output from previous commit.
* Corrected a possible SQL insertion bug in
elgg_get_entity_metadata_where_sql().
* Fixing bug in resizing function that would incorrectly attempt to
crop a picture that was smaller than the target image.
* Changed default declaration of $vars in elgg_view() to array().
* Fixed a typo causing a WSOD.
* Fixes #750: All actions require __elgg_ts and __elgg_token.
* elgg_http_build_query() now supports ports.
Checking for __elgg_ts also in elgg_validate_action_url().
Fixed a spelling mistake ;)
* Adding a view to generate action links for single-click actions.
2010-01-20 brettp
* Fixing bugs in search that would break pagination.
* Refs #1161: Added empty pagination view for RSS feeds.
* Resetting cropping coords for images that can't be cropped in
filestore.
* Fixes #1445: get_resized_image_from_existing_file() has an
optional parameter to allow upscaling if requested image is
larger than original image.
* Fixed documentation for time created and modified params in
elgg_get_entities().
2010-01-15 brettp
* Removing order by clause for now in search.
* Updated CHANGES for #1414.
2010-01-14 brettp
* Stripping slashes on output of original search query.
* Allowing no table prefix in search_get_search_where_sql()
* Fixed incorrect order by for search sorting.
* Fixed an incorrect var name that caused a bug when hooking
against a type but not a subtype.
Added first pass at results sorting.
* Removed unnecessary view directories.
Added option of overriding the default layout for search queries.
Updated documentation reflecting those changes.
Clarified some points in the documentation.
* Added checking and an ERROR log if elgg_view() is passed a
non-array $vars.
2010-01-13 brettp
* Updated contributors with entire MITRE team.
2010-01-13 nickw
* Creating a helper function to return INI values in bytes.
2010-01-12 brettp
* Fixes #1414: Metadata set to a falsy value (except NULL) returns
TRUE for isset($obj->md).
2010-01-12 cash
* closes #1145 - deprecated current "copy constructor" for all
entities and implemented a clone method. The clone copies over
all metadata but not annotations and private settings. It sets
the guid to 0 so saving the cloned entity creates a new database
record. The ownership/access of metadata is set during the save
and will be the same as that of the entity.
2010-01-12 brettp
* Cleaned up RSS entity view for search a bit.
* Added phpdoc header to index.php
Added RSS support to search. Nifty.
2010-01-11 nickw
* Always generating action tokens with output/confirmlink.
Includes a check for actions already defining the tokens.
2010-01-11 brettp
* Fixed a few spelling mistakes.
Added descriptions for the vars in 3.2
* Sanitising relationship in elgg_get_entities_from_relationship();
* Fixed tag output link for new search.
* Pulling out entity views in search.
Adding dev documentation.
2010-01-10 brettp
* Fixes #1399: Case sensitivity was never in the deprecated
function, so no need to add it. Use the new functions if
required.
* Fixes #538. Applied Cash's patch. This is an old one...jeepers.
* Fixes #1375: Metadata names and values are properly escaped.
* Fixes #1432: Version number is set during installation.
Refs #1424: The upgrade functions now detect if no version number
is saved to the db and silences all upgrade warnings and errors.
This is required for all installations < this commit to upgrade
correctly because of #1432.
More strict regex for finding upgrade files.
Upgrade mysql.sql schema with latest.
2010-01-08 brettp
* Refs #1400: Fixed a typo in checking the site_guid. Can't
duplicate #1400 now, so possible fix for that. Waiting for other
tests to close this one.
* Updated language file to reflect default prefix change.
* Changed default prefix to 'elgg_' for table name readability.
* Fixes #1172: URL now checked for trailing slash upon
installation.
2010-01-06 nickw
* Fixing an upgrade issue relating from invalid (non-existent)
usernames
2010-01-05 brettp
* Added an upgrade to enable the search plugin.
Bumped internal version number.
2010-01-03 brettp
* Set admin user's validation upon initial registration.
Fixes an incorrect error message if the first admin user enters
the wrong password.
2009-12-31 brettp
* Closes #1424: Faulty database migrations will now halt an
upgrade.
* Removed debug data.
* Removed lock tables from db utf8 migration because it fails on
some (all?) servers.
2009-12-21 cash
* a little cleanup of documentation and variable handling in input
and output views
* removed unused variable in entities index
* fixed #1087 - is_group_member() now returns boolean values only
* fixes #988 - subtype is now available on new entities after being
saved
2009-12-20 cash
* fixed bug where array of messages passed to system_messages
caused execution to stop - also displaying only errors if they
exist rather than having success and error messages overlapping
each other
* fixes #1322 - "remember me" cookie code is cleared when a user is
banned
* fixes #1193 - now specify charset in both metatag and http header
* cleaned up logic on db query cache
* fixed typo in list_entities()
2009-12-18 brettp
* Clarified the documentation for add_entity_relationship().
2009-12-18 cash
* add comment action now using get_loggedin_user() rather than
$_SESSION['user']
* added js to input/form
* better parsing of query for action and page handlers
2009-12-17 cash
* perhaps this is what Brett intended with the new mb_wrapper code
* fixed notices caused by some input views
* fixed warning due to database query cache
* when asking for a count of entities, we now return an integer
rather than a string
* get_submenu was throwing out tons of notices - this should be
fixed now
* fixes #951 - using background-color rather than background
2009-12-16 cash
* better version of get_resized_image_from_existing_file() - fixes
#685 - more robust to errors, and fixes a memory leak - tested
with both profile photos and file plugin photos - old installs
will still have profile icons of the wrong size due to #685
* added comments on get_input and set_input since they do not
handle nested arrays
2009-12-15 brettp
* Fixes #1413: New server test.
2009-12-14 cash