We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c84d106 commit 3acdcf8Copy full SHA for 3acdcf8
clear.php
@@ -18,10 +18,10 @@ function clear_all() {
18
delete_group($id);
19
}
20
21
- // $resources = get_all_resources();
22
- // foreach($resources as $resource) {
23
- // delete_resource($resource);
24
- // }
+ $resources = get_all_resources();
+ foreach($resources as $resource) {
+ delete_resource($resource);
+ }
25
26
27
?>
create/create.php
@@ -78,9 +78,7 @@ function created_group() {
78
$group_ids = array();
79
if ($group_groups) {
80
foreach($group_groups as $group) {
81
- echo "<BR />GROUP: " . $group;
82
$id = get_group_id(urldecode($group));
83
- echo "<BR />ID: " . $id;
84
array_push($group_ids, $id);
85
86
0 commit comments