Revision 537
Added by doc about 17 years ago
trunk/CHANGELOG | ||
---|---|---|
12 | 12 |
|
13 | 13 |
------------------------------------- 2.7.0 ------------------------------------- |
14 | 14 |
13-Jan-2008 Christian Sommer |
15 |
# re-introduced bugfix of Changeset 472 (fixes ticket 402) accidentally |
|
16 |
removed by Changeset 529 (enhanced pages admin) |
|
17 |
|
|
18 |
13-Jan-2008 Christian Sommer |
|
15 | 19 |
# moved administration tools from Settings to the new section Admin-Tools |
16 | 20 |
|
17 | 21 |
13-Jan-2008 Christian Sommer |
trunk/wb/admin/pages/index.php | ||
---|---|---|
131 | 131 |
$editable_pages = $editable_pages+1; |
132 | 132 |
} |
133 | 133 |
} else { |
134 |
$can_modify = false; |
|
134 |
if($page['visibility'] == 'private') { |
|
135 |
continue; |
|
136 |
} |
|
137 |
else { |
|
138 |
$can_modify = false; |
|
139 |
} |
|
135 | 140 |
} |
136 | 141 |
|
137 | 142 |
// Work out if we should show a plus or not |
Also available in: Unified diff
re-introduced bugfix of Changeset 472 (fixes ticket 402) accidentally removed by Changeset 529 (enhanced pages admin)