379 Commits

Author SHA1 Message Date
Sam Hemelryk
78f0f64d47 blog MDL-25981 PULL-162 Removed typehinting in blog after changed from stdClass to cm_info 2011-02-02 10:37:33 +08:00
Petr Skoda
99d19c13ae MDL-25855 some more missing filelib includes 2011-01-23 18:34:41 +01:00
Dan Poltawski
9268148966 blog MDL-23393 - Tidy up preferences form
Make form display set value and use mforms type checking
2011-01-09 18:03:58 +00:00
Eloy Lafuente (stronk7)
e5137f247e MDL-25341 blogs import - unused vars and mktime() fix 2010-12-27 16:20:39 +01:00
Eloy Lafuente (stronk7)
b7c1da93ec MDL-25341 blogs import - minor whitespace clean 2010-12-27 15:56:58 +01:00
andyjdavis
2948757873 blog MDL-25341 fixed 2 more whitespace issues 2010-12-24 09:31:58 +08:00
andyjdavis
694fb770b9 blog MDL-25341 removed another whitespace 2010-12-22 13:29:01 +08:00
andyjdavis
c484c852f4 blog MDL-25341 removed some whitespaces inserted by netbeans 2010-12-22 13:27:46 +08:00
andyjdavis
bb8a75e72d blog MDL-25341 fixed some whitespace issues 2010-12-22 13:24:55 +08:00
andyjdavis
50ff50daaa blog MDL-25341 added removal of deleted external blog posts 2010-12-20 14:58:02 +08:00
andyjdavis
cc52e53dd1 blog MDL-20617 adding checking for deleted blog posts 2010-12-20 11:16:11 +08:00
andyjdavis
afce96f07b blog MDL-25341 updated external blog syncing code after peer review 2010-12-17 09:46:46 +08:00
andyjdavis
9829e3d8fa blog MDL-25341 made external blog syncronization not delete all previously retreieved blog posts 2010-12-16 16:21:41 +08:00
David Mudrak
cfa11fd610 Fixed a string usage - no placeholder is expected here 2010-11-26 09:42:02 +00:00
Eloy Lafuente
8be6dfcc4a MDL-25340 external blof - fix problem with extra tags processing 2010-11-19 23:58:53 +00:00
Eloy Lafuente
a742eb1f8b MDL-25340 external blog - fix sql_compare_text() use 2010-11-19 21:57:15 +00:00
Andrew Davis
f8df6aebcf blog MDL-25318 fixed an sql error in blog_delete_external_entries() 2010-11-19 07:38:29 +00:00
Andrew Davis
99cd408f81 blog MDL-25217 now checking for null creation and modified timestamps when importing external blog entries 2010-11-15 03:56:12 +00:00
Sam Hemelryk
367a75fae4 themes lib MDL-24895 Multiple fixes to better handle overflow.
Major tasks undertaken in this patch:
* New format_text argument, overflowdiv.
* New page layout Report.
* Review of all format_text calls.
* Added support for the report layout to all themes.
* Changed forum post display from tables to divs.
2010-11-05 02:53:47 +00:00
Sam Marshall
e67c213cc3 Unit tests MDL-24907 Fix blog unit tests 2010-11-02 14:18:11 +00:00
Sam Hemelryk
ca824b38ce blogs MDL-24875 Fixed typo... whoops 2010-10-27 05:59:31 +00:00
Sam Hemelryk
3b59524d31 blogs MDL-24875 Increased uniquehash field size to 255 and added a str length check to external blog syncing. 2010-10-27 05:25:00 +00:00
Andrew Davis
5ce534eb7c rss MDLSITE-1007 fixed a potential security problem with blog rss feeds 2010-10-04 08:12:28 +00:00
Petr Skoda
e463f508cb MDL-24321 switching to stdClass in /blog/ 2010-09-21 08:11:06 +00:00
Petr Skoda
4fb35be36a fixed object initialization 2010-09-17 11:30:10 +00:00
Petr Skoda
320ae23ac1 fixed missing global 2010-09-17 11:29:29 +00:00
Petr Skoda
b29ce44dde fixed use of undefined $user 2010-09-17 11:25:48 +00:00
Petr Skoda
fd7a6fe2e3 fixed undefined sitecontext 2010-09-17 11:24:35 +00:00
Petr Skoda
d91181dc67 commenting out unfinished function implementation 2010-09-17 11:22:51 +00:00
Petr Skoda
2c27b6aeac fixed function name typo 2010-09-17 11:21:36 +00:00
Petr Skoda
b6859e0eb6 MDL-24079 blog now using new sql_like();Êfixed typo 2010-09-04 12:23:18 +00:00
Petr Skoda
c014d57c4f MDL-24079 blog now using new sql_like() 2010-09-04 12:04:01 +00:00
Petr Skoda
dd88de0ebd MDL-14679 fixed remaining old style update_record()s 2010-09-03 18:01:25 +00:00
Petr Skoda
a9637e7df4 MDL-14679 fixed a lot more old style uses of insert_record() 2010-09-03 17:47:41 +00:00
Petr Skoda
9d97f08e99 MDL-14679 fixed multiple old style insert_record calls, we throw exceptions now from DML 2010-09-03 16:26:04 +00:00
Petr Skoda
71904f4d2b MDL-23984 make_upload_directory() cleanup - we now throw exceptions by default which should prevent a lot of strange problems 2010-08-29 14:59:14 +00:00
Dongsheng Cai
d846488e65 "MDL-23917, display comments for not logged in users" 2010-08-25 03:50:19 +00:00
Sam Hemelryk
f36b47efa0 admin blog comment course MDL-22856 Minor cleanups and improvements to styles 2010-08-19 05:56:57 +00:00
Petr Skoda
ede7252234 MDL-23784 finally getting rid of all legacy .gif and .png extensions, yay! fixing issues with incorrect & in JS code 2010-08-12 20:37:24 +00:00
Petr Skoda
35716b8682 MDL-22001 filter_text() and filter_string() now use context parameter instead of courseid, PAGE->context is used only as a fallback; moved comment stuff away from format_text() because it does not belong there; filterlib is not using courseid except for legacy filters; fixed coding style in filters;Êimproved php docs; fixed upgrade of filters (should be in plugins, not core) 2010-07-30 20:51:01 +00:00
Andrew Davis
451f1e3844 blog MDL-23574 fixed filter problem with user blog rss feeds 2010-07-30 03:16:14 +00:00
Andrew Davis
e858c368ff rss MDL-23473 made blog rss feeds work 2010-07-28 02:32:11 +00:00
Andrew Davis
43b92251be rss MDL-23391 made lib/rsslib.php more generic 2010-07-21 02:11:53 +00:00
Andrew Davis
274f98409a rss MDL-23391 refactored rss feeds to make them standard across components 2010-07-20 07:49:34 +00:00
Andrew Davis
690aa229c5 rss MDL-23391 committing refactored rss retrieval file 2010-07-20 03:47:20 +00:00
Jonathan Harker
c71f326514 MDL-20876 Fix remaining split() calls. 2010-07-20 03:27:36 +00:00
David Mudrak
2650f44d2a MDL-21695 Replaced help/blog
AMOS BEGIN
 HLP blog/deleteblogassociations.html,[deleteblogassociations_help,core_blog]
 HLP blog/description.html,[description_help,core_blog]
 HLP blog/filtertags.html,[filtertags_help,core_blog]
 HLP blog/name.html,[name_help,core_blog]
 HLP blog/publish_state.html,[publishto_help,core_blog]
 HLP blog/tags.html,[autotags_help,core_blog]
 HLP blog/url.html,[url_help,core_blog]
AMOS END
2010-07-19 18:31:13 +00:00
Andrew Davis
aa60291e12 rss MDL-23391 alter the rss urls to be component names ie mod_forum instead of just module name ie forum 2010-07-19 10:57:52 +00:00
Andrew Davis
d5f25d957e rss MDL-23383 moved the RSS cache to /dataroot/cache/rss 2010-07-19 06:46:23 +00:00
Petr Skoda
897aa80c05 MDL-23310 fixed undefined page layouts 2010-07-15 18:09:11 +00:00