Log of /contributions/modules/roleassign/roleassign.module
Parent Directory
|
Revision Log
|
Revision Graph
Revision
1.17 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Wed Oct 25 13:01:45 2006 UTC
(3 years, 1 month ago)
by
tbarregren
Branch:
MAIN
CVS Tags:
DRUPAL-5--1-0
Branch point for:
DRUPAL-5
Changes since
1.16: +7 -7 lines
Diff to
previous 1.16
Argh! Restored a line which was overwritten by the corresponding line from DRUPAL-4-7. See patch #90669. Thanks again hunmonk for keeping an eye on me. :-)
Revision
1.1.1.1.2.12 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
(vendor branch)
Tue Oct 24 17:52:18 2006 UTC
(3 years, 1 month ago)
by
tbarregren
Branch:
DRUPAL-4-7
Changes since
1.1.1.1.2.11: +67 -57 lines
Diff to
previous 1.1.1.1.2.11
* Replaced a forgotten <a>...</a> with l().
* Improvements of source code comments.
* Improvements of documentation.
* Miscellaneous minor improvements.
Revision
1.14 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Tue Oct 24 13:03:12 2006 UTC
(3 years, 1 month ago)
by
tbarregren
Branch:
MAIN
Changes since
1.13: +162 -176 lines
Diff to
previous 1.13
* Major refactoring of roleassign_form_alter() and roleassign_user_operations().
* Replaced a forgotten <a>...</a> with l().
* Improvements of source code comments.
* Improvements of documentation.
Revision
1.11 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Mon Oct 16 15:21:20 2006 UTC
(3 years, 1 month ago)
by
tbarregren
Branch:
MAIN
Changes since
1.10: +58 -46 lines
Diff to
previous 1.10
Patch by hunmonk that fixes #89333 and #89452.
Works now with HEAD/5.0. I have also improved
the documentation.
Revision
1.1.1.1.2.4 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
(vendor branch)
Mon Sep 25 12:34:13 2006 UTC
(3 years, 2 months ago)
by
tbarregren
Branch:
DRUPAL-4-7
Changes since
1.1.1.1.2.3: +4 -4 lines
Diff to
previous 1.1.1.1.2.3
Renamed roleassign_admin_set[t]tings() to roleassign_admin() to really make it clear that roleassign_admin isn't supposed to implement hook_settings.
Revision
1.2 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Fri Sep 22 19:19:32 2006 UTC
(3 years, 2 months ago)
by
tbarregren
Branch:
MAIN
Changes since
1.1: +27 -12 lines
Diff to
previous 1.1
Patch that fixes #85547 and #85546 by pjb: Works now with PHP4.
I developed the module for PHP5 and missed to test on PHP4.
Thanks to budda who pointed it out, and pjb who provided a solution.
Revision
1.1.1.1.2.2 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
(vendor branch)
Fri Sep 22 07:29:55 2006 UTC
(3 years, 2 months ago)
by
tbarregren
Branch:
DRUPAL-4-7
Changes since
1.1.1.1.2.1: +185 -186 lines
Diff to
previous 1.1.1.1.2.1
Now compatible with PHP4. PHP4 can't handle a member select operator (->) following a function returnig an object. The solution is to split the construction into two statements. Thus, for following statement to work in PHP4:
$member_value = function_returning_object()->member;
it must be written as:
$object = function_returning_object();
$member_value = $object->member;
This form allows you to request diffs between any two revisions of this file.
For each of the two "sides" of the diff,
select a symbolic revision name using the selection box, or choose
'Use Text Field' and enter a numeric revision.