Changeset 127
- Timestamp:
- 10/15/07 03:31:45 (1 year ago)
- Files:
-
- folio/folio/html/setupdb.php (modified) (1 diff)
- folio/folio/lib.php (modified) (4 diffs)
- folio/folio/readme.txt (modified) (3 diffs)
- folio/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
folio/folio/html/setupdb.php
r115 r127 33 33 34 34 // See if a user other than news is trying to run this. 35 if ($USER->username <> 'news') {36 error('You can only run this function if you logged on as "news"');37 die();38 }35 //if ($USER->username <> 'news') { 36 // error('You can only run this function if you logged on as "news"'); 37 // die(); 38 //} 39 39 40 40 // Start upgrading. folio/folio/lib.php
r117 r127 1141 1141 'weblog_comment', $object->ident, '', 1142 1142 $title, $object->body, $link, $access, $created ); 1143 1144 return $object; 1143 1145 } 1144 1146 … … 1147 1149 **/ 1148 1150 function folio_rss_file_post($object_type, $event, $object) { 1151 1149 1152 global $CFG; 1150 1153 … … 1168 1171 $user_username = ''; 1169 1172 } 1170 1173 1171 1174 // Build variables from $object 1172 1175 $type_ident = $object->ident; … … 1193 1196 $access = $object->access; 1194 1197 $created = $object->time_uploaded; 1195 1198 1196 1199 //generate rss 1197 1200 rss_deleteitem( $type, $type_ident ); 1198 1201 rss_additem( $owner_ident, $owner_username, $user_ident, $user_name, $user_username, $type, $type_ident, $tags, $title, $body, $link, $access, $created ); 1199 1200 1202 1203 return $object; 1201 1204 } 1202 1205 folio/folio/readme.txt
r117 r127 1 1 ---------------------------------------------------------------------------------- 2 2 Elgg Folio Add-in 3 Updated 7/1/20073 Updated 10/14/2007 4 4 ---------------------------------------------------------------------------------- 5 5 … … 46 46 To install this software, do the following: 47 47 48 1. Install the v0.7 version of Elgg. Make sure that Elgg is working48 1. Install the v0.7 or v.08 version of Elgg. Make sure that Elgg is working 49 49 before going any further. This add-in is not supported 50 50 with any other version. … … 93 93 94 94 Occurred: 95 2007.10.08 v0.64 Bug fix with file update. 95 96 2007.07.01 v0.63 Fixed small bugs, made a number of minor enhancements. 96 97 2007.06.25 v0.62 Fixed bugs. Updated DB Scheme folio/readme.txt
r117 r127 1 1 ---------------------------------------------------------------------------------- 2 2 Elgg Folio Add-in 3 Updated 7/1/20073 Updated 10/14/2007 4 4 ---------------------------------------------------------------------------------- 5 5 … … 46 46 To install this software, do the following: 47 47 48 1. Install the v0.7 version of Elgg. Make sure that Elgg is working48 1. Install the v0.7 or v.08 version of Elgg. Make sure that Elgg is working 49 49 before going any further. This add-in is not supported 50 50 with any other version. … … 93 93 94 94 Occurred: 95 2007.10.08 v0.64 Bug fix with file update. 95 96 2007.07.01 v0.63 Fixed small bugs, made a number of minor enhancements. 96 97 2007.06.25 v0.62 Fixed bugs. Updated DB Scheme
