Issue Details (XML | Word | Printable)

Key: MDL-19690
Type: Sub-task Sub-task
Status: Resolved Resolved
Resolution: Fixed
Priority: Minor Minor
Assignee: Tim Hunt
Reporter: Tim Hunt
Votes: 0
Watchers: 3
Operations

Add/Edit UI Mockup to this issue
If you were logged in you would be able to see more operations.
Moodle
MDL-19077

Replace $CFG->pixpath with an $OUTPUT->icon_url_old($icon, $module);

Created: 02/Jul/09 01:40 PM   Updated: 03/Jul/09 03:56 PM
Return to search
Component/s: Lib
Affects Version/s: 2.0
Fix Version/s: 2.0

Participants: Petr Skoda and Tim Hunt
Security Level: None
Resolved date: 03/Jul/09
Affected Branches: MOODLE_20_STABLE
Fixed Branches: MOODLE_20_STABLE


 Description  « Hide
We are having problems with $CFG->pixpath in HEAD>

To start with, it is a nasty global variables hack.

But the problem is that you cannot set up $CFG->pixpath until the theme is known. But the theme is only know after a variety of other things are done and it is hard to predict when that is.

However, we do currently have clever code to initialise $OUTPUT the first time it is used.


Old code that used the string "$CFG->modpixpath/$cm->modname/icon.gif" should be updated to $OUTPUT->mod_icon_url('icon', $cm->modname);

Old code that used the string "$CFG->pixpath/i/settings.gif" should be updated to $OUTPUT->old_icon_url('i/settings');

The reason for the slightly ugly function names is what we are planning (http://moodle.org/mod/forum/discuss.php?d=126543) to change the default icon-set in Moodle. When that happens we will probably adopt new names for all the icons. At that point, I propose that we move to a function $OUTPUT->icon_url($icon, $module); where $module is like the same argument to get_string. That is, we let all types of plugins supply their own icons in future, not just modules.


Note that the API does not include the file extension. We should not hard-code this. Instead themes should be able to choose png or gif.

Also, eventually, icon_url should do a search of theme, parent theme, standard theme, like smartpix.php does.

 All   Comments   Change History   Version Control      Sort Order: Ascending order - Click to sort in descending order
tjhunt committed 3 files to 'Moodle CVS' - 02/Jul/09 04:49 PM
output: MDL-19690 icon_finder classes and $OUTPUT->mod/old_icon_url

This is ready to replace $CFG->pixpath and $CFG->modpixpath soon.
MODIFY lib/outputlib.php   Rev. 1.14    (+1529 -1301 lines)
MODIFY lib/setup.php   Rev. 1.279    (+1 -1 lines)
MODIFY lib/simpletest/testoutputlib.php   Rev. 1.7    (+70 -23 lines)
tjhunt committed 1 file to 'Moodle CVS' - 02/Jul/09 05:28 PM
output: MDL-19690 allow for .png or .gif in $OUTPUT->mod/old_icon_url
MODIFY lib/outputlib.php   Rev. 1.15    (+29 -9 lines)
tjhunt committed 23 files to 'Moodle CVS' - 02/Jul/09 06:06 PM
MDL-19690 - first 53 $CFG->pixpath to $OUTPUT->old_icon_url
MODIFY files/index.php   Rev. 1.139    (+5 -5 lines)
MODIFY admin/modules.php   Rev. 1.64    (+3 -3 lines)
MODIFY tag/coursetags_edit.php   Rev. 1.5    (+1 -1 lines)
MODIFY mod/quiz/editlib.php   Rev. 1.120    (+5 -5 lines)
MODIFY lib/outputlib.php   Rev. 1.16    (+2 -2 lines)
MODIFY mod/lesson/locallib.php   Rev. 1.85    (+7 -7 lines)
MODIFY blocks/course_summary/block_course_summary.php   Rev. 1.32    (+3 -3 lines)
MODIFY blocks/course_list/block_course_list.php   Rev. 1.55    (+3 -3 lines)
MODIFY group/groupings.php   Rev. 1.7    (+4 -4 lines)
MODIFY index.php   Rev. 1.235    (+2 -2 lines)
MODIFY question/type/multianswer/questiontype.php   Rev. 1.76    (+4 -4 lines)
MODIFY grade/export/keymanager.php   Rev. 1.6    (+3 -3 lines)
MODIFY mod/quiz/locallib.php   Rev. 1.179    (+3 -3 lines)
MODIFY grade/edit/scale/index.php   Rev. 1.12    (+5 -5 lines)
MODIFY grade/edit/outcome/index.php   Rev. 1.26    (+5 -5 lines)
MODIFY mod/glossary/lib.php   Rev. 1.252    (+6 -6 lines)
MODIFY mod/quiz/tabs.php   Rev. 1.35    (+3 -3 lines)
MODIFY lib/form/filemanager.php   Rev. 1.24    (+4 -4 lines)
MODIFY files/draftfiles.php   Rev. 1.8    (+3 -3 lines)
MODIFY blocks/tags/block_tags.php   Rev. 1.16    (+4 -3 lines)
MODIFY course/info.php   Rev. 1.30    (+3 -3 lines)
MODIFY admin/mnet/enr_courses.php   Rev. 1.15    (+2 -2 lines)
MODIFY grade/import/keymanager.php   Rev. 1.6    (+3 -3 lines)
tjhunt committed 4 files to 'Moodle CVS' - 02/Jul/09 06:12 PM
MDL-19690 - 4 more $CFG->pixpath to $OUTPUT->old_icon_url
MODIFY admin/report/configlog/index.php   Rev. 1.2    (+2 -2 lines)
MODIFY admin/mnet/access_control.php   Rev. 1.21    (+2 -2 lines)
MODIFY admin/user.php   Rev. 1.124    (+2 -2 lines)
MODIFY lib/weblib.php   Rev. 1.1285    (+2 -2 lines)
tjhunt committed 8 files to 'Moodle CVS' - 02/Jul/09 06:26 PM
MDL-19690 - more $CFG->pixpath to $OUTPUT->old_icon_url
MODIFY admin/roles/lib.php   Rev. 1.24    (+3 -3 lines)
MODIFY grade/report/grader/lib.php   Rev. 1.169    (+3 -3 lines)
MODIFY admin/report/spamcleaner/index.php   Rev. 1.8    (+2 -2 lines)
MODIFY grade/lib.php   Rev. 1.176    (+2 -2 lines)
MODIFY lib/weblib.php   Rev. 1.1286    (+4 -5 lines)
MODIFY admin/filters.php   Rev. 1.50    (+2 -2 lines)
MODIFY admin/roles/manage.php   Rev. 1.73    (+5 -5 lines)
MODIFY mod/quiz/editlib.php   Rev. 1.121    (+3 -3 lines)
tjhunt committed 28 files to 'Moodle CVS' - 02/Jul/09 06:53 PM
MDL-19690 - lots more $CFG->pixpath to $OUTPUT->old_icon_url
MODIFY admin/blocks.php   Rev. 1.58    (+3 -3 lines)
MODIFY calendar/view.php   Rev. 1.106    (+2 -2 lines)
MODIFY course/index.php   Rev. 1.116    (+8 -8 lines)
MODIFY grade/edit/tree/lib.php   Rev. 1.15    (+4 -4 lines)
MODIFY admin/roles/usersroles.php   Rev. 1.6    (+4 -4 lines)
MODIFY calendar/lib.php   Rev. 1.233    (+23 -23 lines)
MODIFY blocks/social_activities/block_social_activities.php   Rev. 1.29    (+3 -3 lines)
MODIFY grade/lib.php   Rev. 1.177    (+13 -13 lines)
MODIFY blocks/admin_tree/block_admin_tree.php   Rev. 1.43    (+6 -6 lines)
MODIFY files/index.php   Rev. 1.140    (+1 -1 lines)
MODIFY blocks/moodleblock.class.php   Rev. 1.118    (+9 -9 lines)
MODIFY blocks/course_list/block_course_list.php   Rev. 1.56    (+3 -3 lines)
MODIFY blocks/site_main_menu/block_site_main_menu.php   Rev. 1.37    (+3 -3 lines)
MODIFY blocks/online_users/block_online_users.php   Rev. 1.66    (+3 -3 lines)
MODIFY course/lib.php   Rev. 1.662    (+20 -20 lines)
MODIFY enrol/manual/enrol.php   Rev. 1.45    (+4 -4 lines)
MODIFY blog/rsslib.php   Rev. 1.18    (+2 -2 lines)
MODIFY blocks/participants/block_participants.php   Rev. 1.38    (+3 -3 lines)
MODIFY admin/lang.php   Rev. 1.129    (+5 -5 lines)
MODIFY course/category.php   Rev. 1.145    (+13 -13 lines)
MODIFY blocks/admin/block_admin.php   Rev. 1.126    (+23 -23 lines)
MODIFY blocks/messages/block_messages.php   Rev. 1.21    (+3 -3 lines)
MODIFY course/format/topics/format.php   Rev. 1.100    (+11 -11 lines)
MODIFY blocks/loancalc/block_loancalc.php   Rev. 1.13    (+3 -3 lines)
MODIFY course/search.php   Rev. 1.70    (+2 -2 lines)
MODIFY course/format/weeks/format.php   Rev. 1.93    (+9 -9 lines)
MODIFY course/pending.php   Rev. 1.26    (+2 -2 lines)
MODIFY files/draftfiles.php   Rev. 1.9    (+1 -1 lines)
tjhunt committed 38 files to 'Moodle CVS' - 02/Jul/09 07:09 PM
MDL-19690 - lots more $CFG->pixpath to $OUTPUT->old_icon_url
MODIFY question/editlib.php   Rev. 1.122    (+6 -6 lines)
MODIFY question/type/questiontype.php   Rev. 1.130    (+3 -3 lines)
MODIFY lib/tablelib.php   Rev. 1.43    (+9 -9 lines)
MODIFY mod/scorm/locallib.php   Rev. 1.92    (+3 -3 lines)
MODIFY mod/feedback/edit.php   Rev. 1.12    (+16 -16 lines)
MODIFY repository/alfresco/repository.class.php   Rev. 1.18    (+2 -2 lines)
MODIFY mod/assignment/type/online/assignment.class.php   Rev. 1.69    (+5 -5 lines)
MODIFY mod/feedback/mapcourse.php   Rev. 1.10    (+3 -3 lines)
MODIFY mod/feedback/delete_template.php   Rev. 1.10    (+3 -3 lines)
MODIFY user/index.php   Rev. 1.230    (+4 -4 lines)
MODIFY repository/webdav/repository.class.php   Rev. 1.10    (+2 -2 lines)
MODIFY lib/weblib.php   Rev. 1.1287    (+4 -4 lines)
MODIFY user/portfolio.php   Rev. 1.6    (+1 -1 lines)
MODIFY user/message.html   Rev. 1.10    (+1 -1 lines)
MODIFY repository/filesystem/repository.class.php   Rev. 1.12    (+2 -2 lines)
MODIFY mod/hotpot/index.php   Rev. 1.41    (+3 -3 lines)
MODIFY user/pix.php   Rev. 1.22    (+3 -3 lines)
MODIFY mod/forum/lib.php   Rev. 1.799    (+4 -4 lines)
MODIFY repository/local/repository.class.php   Rev. 1.36    (+5 -5 lines)
MODIFY lib/portfoliolib.php   Rev. 1.71    (+5 -5 lines)
MODIFY mod/assignment/type/upload/assignment.class.php   Rev. 1.68    (+5 -5 lines)
MODIFY repository/draft/repository.class.php   Rev. 1.3    (+2 -2 lines)
MODIFY message/lib.php   Rev. 1.87    (+3 -3 lines)
MODIFY user/profile/index.php   Rev. 1.17    (+11 -11 lines)
MODIFY mod/quiz/summary.php   Rev. 1.10    (+1 -1 lines)
MODIFY repository/mahara/repository.class.php   Rev. 1.9    (+1 -1 lines)
MODIFY mod/forum/index.php   Rev. 1.124    (+3 -3 lines)
MODIFY repository/lib.php   Rev. 1.186    (+1 -1 lines)
MODIFY lib/upgradelib.php   Rev. 1.26    (+2 -2 lines)
MODIFY mod/glossary/lib.php   Rev. 1.253    (+2 -2 lines)
MODIFY mod/quiz/editlib.php   Rev. 1.122    (+2 -2 lines)
MODIFY repository/s3/repository.class.php   Rev. 1.9    (+2 -2 lines)
MODIFY lib/rsslib.php   Rev. 1.60    (+5 -5 lines)
MODIFY lib/adminlib.php   Rev. 1.373    (+4 -4 lines)
MODIFY repository/filepicker.php   Rev. 1.13    (+1 -1 lines)
MODIFY mod/data/lib.php   Rev. 1.234    (+5 -5 lines)
MODIFY mod/data/preset.php   Rev. 1.39    (+2 -2 lines)
MODIFY mod/data/field.php   Rev. 1.33    (+3 -3 lines)
tjhunt committed 16 files to 'Moodle CVS' - 02/Jul/09 07:23 PM
MDL-19690 - eliminate the $OUTPUT->initialise_deprecated_cfg_pixpath horrible hack.

Replace $CFG->pixpath with $OUPTUT->old_icon_url(...) instead.
MODIFY repository/url/repository.class.php   Rev. 1.8    (+3 -6 lines)
MODIFY repository/filepicker.php   Rev. 1.14    (+0 -1 lines)
MODIFY lib/formslib.php   Rev. 1.183    (+0 -1 lines)
MODIFY lib/weblib.php   Rev. 1.1288    (+1 -2 lines)
MODIFY repository/lib.php   Rev. 1.187    (+1 -3 lines)
MODIFY repository/mahara/repository.class.php   Rev. 1.10    (+1 -2 lines)
MODIFY lib/outputlib.php   Rev. 1.17    (+0 -15 lines)
MODIFY repository/s3/repository.class.php   Rev. 1.10    (+2 -3 lines)
MODIFY repository/alfresco/repository.class.php   Rev. 1.19    (+2 -3 lines)
MODIFY question/category_class.php   Rev. 1.55    (+1 -2 lines)
MODIFY repository/boxnet/repository.class.php   Rev. 1.70    (+2 -3 lines)
MODIFY repository/filesystem/repository.class.php   Rev. 1.13    (+2 -4 lines)
MODIFY repository/webdav/repository.class.php   Rev. 1.11    (+2 -3 lines)
MODIFY mod/chat/gui_ajax/Attic/update.php   Rev. 1.9    (+1 -3 lines)
MODIFY repository/draft/repository.class.php   Rev. 1.4    (+1 -2 lines)
MODIFY repository/local/repository.class.php   Rev. 1.37    (+1 -2 lines)
tjhunt committed 29 files to 'Moodle CVS' - 02/Jul/09 08:07 PM
MDL-19690 - lots more $CFG->pixpath to $OUTPUT->old_icon_url
and $CFG->modpixpath to $OUTPUT->mod_icon_url
MODIFY course/recent.php   Rev. 1.41    (+2 -2 lines)
MODIFY course/report/outline/index.php   Rev. 1.20    (+2 -2 lines)
MODIFY search/query.php   Rev. 1.34    (+1 -1 lines)
MODIFY user/profile/index.php   Rev. 1.18    (+6 -6 lines)
MODIFY blocks/site_main_menu/block_site_main_menu.php   Rev. 1.38    (+7 -7 lines)
MODIFY admin/user/user_bulk_display.php   Rev. 1.4    (+2 -2 lines)
MODIFY question/editlib.php   Rev. 1.123    (+3 -3 lines)
MODIFY mod/hotpot/lib.php   Rev. 1.121    (+2 -2 lines)
MODIFY lib/formslib.php   Rev. 1.184    (+3 -3 lines)
MODIFY mod/feedback/edit.php   Rev. 1.13    (+6 -6 lines)
MODIFY admin/user/user_bulk_enrol.php   Rev. 1.4    (+2 -2 lines)
MODIFY admin/modules.php   Rev. 1.65    (+2 -2 lines)
MODIFY mod/forum/lib.php   Rev. 1.800    (+2 -2 lines)
MODIFY mod/feedback/lib.php   Rev. 1.42    (+2 -2 lines)
MODIFY grade/lib.php   Rev. 1.178    (+2 -2 lines)
MODIFY course/modedit.php   Rev. 1.73    (+2 -2 lines)
MODIFY blocks/social_activities/block_social_activities.php   Rev. 1.30    (+7 -7 lines)
MODIFY calendar/lib.php   Rev. 1.234    (+3 -3 lines)
MODIFY admin/qtypes.php   Rev. 1.12    (+4 -4 lines)
MODIFY course/lib.php   Rev. 1.663    (+8 -8 lines)
MODIFY mod/assignment/lib.php   Rev. 1.391    (+2 -2 lines)
MODIFY course/user.php   Rev. 1.94    (+3 -3 lines)
MODIFY mod/quiz/lib.php   Rev. 1.341    (+2 -2 lines)
MODIFY grade/report/grader/lib.php   Rev. 1.170    (+3 -3 lines)
MODIFY admin/filters.php   Rev. 1.51    (+2 -2 lines)
MODIFY lib/weblib.php   Rev. 1.1289    (+12 -12 lines)
MODIFY admin/generator.php   Rev. 1.24    (+0 -2 lines)
MODIFY lib/form/modgrade.php   Rev. 1.3    (+2 -2 lines)
MODIFY blocks/activity_modules/block_activity_modules.php   Rev. 1.24    (+3 -3 lines)
tjhunt committed 3 files to 'Moodle CVS' - 02/Jul/09 08:25 PM
MDL-19690 - Eliminate all remaining $CFG->modpixpath apart from mod/scorm
MODIFY mod/data/lib.php   Rev. 1.235    (+2 -2 lines)
MODIFY lib/ajax/ajaxlib.php   Rev. 1.65    (+0 -1 lines)
MODIFY course/lib.php   Rev. 1.664    (+4 -3 lines)
tjhunt committed 3 files to 'Moodle CVS' - 02/Jul/09 08:35 PM
MDL-19690 fix some breakage.
MODIFY question/category_class.php   Rev. 1.56    (+3 -6 lines)
MODIFY course/lib.php   Rev. 1.665    (+3 -3 lines)
MODIFY files/index.php   Rev. 1.141    (+1 -1 lines)
tjhunt committed 12 files to 'Moodle CVS' - 03/Jul/09 12:23 PM
MDL-19690 - more $CFG->pixpath to $OUTPUT->old_icon_url
MODIFY blocks/rss_client/Attic/block_rss_client_action.php   Rev. 1.68    (+3 -3 lines)
MODIFY blocks/admin_tree/block_admin_tree.php   Rev. 1.44    (+4 -3 lines)
MODIFY course/report/progress/index.php   Rev. 1.24    (+3 -3 lines)
MODIFY course/search.php   Rev. 1.71    (+7 -8 lines)
MODIFY blocks/admin_tree/admintree.js   Rev. 1.3    (+4 -4 lines)
MODIFY files/index.php   Rev. 1.142    (+2 -2 lines)
MODIFY blocks/moodleblock.class.php   Rev. 1.119    (+10 -10 lines)
MODIFY files/draftfiles.php   Rev. 1.10    (+2 -2 lines)
MODIFY blocks/mnet_hosts/block_mnet_hosts.php   Rev. 1.16    (+3 -3 lines)
MODIFY blog/lib.php   Rev. 1.111    (+3 -3 lines)
MODIFY grade/lib.php   Rev. 1.180    (+5 -6 lines)
MODIFY course/lib.php   Rev. 1.666    (+10 -10 lines)
tjhunt committed 21 files to 'Moodle CVS' - 03/Jul/09 02:19 PM
MDL-19690 - more $CFG->pixpath to $OUTPUT->old_icon_url
MODIFY message/lib.php   Rev. 1.88    (+5 -5 lines)
MODIFY lib/ajax/ajaxlib.php   Rev. 1.66    (+18 -2 lines)
MODIFY repository/lib.php   Rev. 1.188    (+1 -1 lines)
MODIFY lib/ajax/block_classes.js   Rev. 1.19    (+3 -3 lines)
MODIFY mod/glossary/editcategories.php   Rev. 1.49    (+3 -3 lines)
MODIFY lib/form/filemanager.php   Rev. 1.25    (+2 -2 lines)
MODIFY question/type/questiontype.php   Rev. 1.131    (+5 -5 lines)
MODIFY question/contextmove_form.php   Rev. 1.4    (+3 -3 lines)
MODIFY user/index.php   Rev. 1.231    (+2 -2 lines)
MODIFY user/selector/lib.php   Rev. 1.21    (+3 -3 lines)
MODIFY lib/ajax/ajaxcourse.js   Rev. 1.14    (+3 -3 lines)
MODIFY user/selector/script.js   Rev. 1.18    (+11 -2 lines)
MODIFY question/qengine.js   Rev. 1.8    (+3 -3 lines)
MODIFY lib/questionlib.php   Rev. 1.206    (+8 -10 lines)
MODIFY question/contextmoveq_form.php   Rev. 1.4    (+2 -2 lines)
MODIFY lib/weblib.php   Rev. 1.1290    (+2 -2 lines)
MODIFY user/portfolio.php   Rev. 1.7    (+1 -1 lines)
MODIFY lib/ajax/section_classes.js   Rev. 1.45    (+17 -17 lines)
MODIFY lib/adminlib.php   Rev. 1.374    (+23 -23 lines)
MODIFY user/view.php   Rev. 1.206    (+4 -4 lines)
MODIFY repository/wikimedia/repository.class.php   Rev. 1.5    (+2 -2 lines)
tjhunt committed 8 files to 'Moodle CVS' - 03/Jul/09 02:38 PM
MDL-19690 - more $CFG->pixpath to $OUTPUT->old_icon_url
MODIFY question/editlib.php   Rev. 1.124    (+6 -6 lines)
MODIFY lib/rsslib.php   Rev. 1.61    (+1 -4 lines)
MODIFY repository/repository.src.js   Rev. 1.15    (+8 -8 lines)
MODIFY repository/lib.php   Rev. 1.189    (+8 -1 lines)
MODIFY lib/weblib.php   Rev. 1.1291    (+3 -2 lines)
MODIFY lib/listlib.php   Rev. 1.20    (+4 -7 lines)
MODIFY lib/javascript-static.js   Rev. 1.72    (+7 -5 lines)
MODIFY lib/form/filemanager.php   Rev. 1.26    (+2 -2 lines)
tjhunt committed 20 files to 'Moodle CVS' - 03/Jul/09 03:55 PM
MDL-19690 - the last lot of $CFG->pixpath to $OUTPUT->old_icon_url
Including MDL-19693

RIP $CFG->pixpath
MODIFY mod/scorm/lib.php   Rev. 1.121    (+5 -6 lines)
MODIFY lib/pagelib.php   Rev. 1.133    (+2 -2 lines)
MODIFY lib/outputlib.php   Rev. 1.18    (+3 -2 lines)
MODIFY mod/wiki/ewiki/plugins/moodle/downloads.php   Rev. 1.20    (+5 -5 lines)
MODIFY mod/assignment/lib.php   Rev. 1.392    (+3 -3 lines)
MODIFY mod/quiz/styles.php   Rev. 1.25    (+1 -1 lines)
MODIFY mod/glossary/lib.php   Rev. 1.254    (+3 -3 lines)
MODIFY mod/scorm/loadSCO.php   Rev. 1.53    (+2 -4 lines)
MODIFY mod/scorm/datamodels/scorm_datamodels.js   Rev. 1.2    (+2 -2 lines)
MODIFY mod/scorm/datamodels/aicclib.php   Rev. 1.21    (+12 -11 lines)
MODIFY mod/assignment/type/upload/assignment.class.php   Rev. 1.69    (+8 -8 lines)
MODIFY mod/forum/lib.php   Rev. 1.801    (+5 -6 lines)
MODIFY mod/scorm/datamodels/scorm_13lib.php   Rev. 1.20    (+12 -11 lines)
MODIFY mod/scorm/datamodels/scorm_12lib.php   Rev. 1.22    (+12 -11 lines)
MODIFY mod/data/field/file/field.class.php   Rev. 1.33    (+6 -6 lines)
MODIFY mod/quiz/locallib.php   Rev. 1.180    (+3 -3 lines)
MODIFY mod/scorm/report.php   Rev. 1.63    (+3 -5 lines)
MODIFY mod/resource/type/directory/Attic/resource.class.php   Rev. 1.46    (+7 -7 lines)
MODIFY mod/assignment/type/uploadsingle/assignment.class.php   Rev. 1.45    (+4 -4 lines)
MODIFY mod/forum/rate_ajax.js   Rev. 1.5    (+5 -12 lines)
Petr Skoda committed 1 file to 'Moodle CVS' - 03/Jul/09 05:59 PM
MDL-19690 fixed some icon conversion
MODIFY course/lib.php   Rev. 1.667    (+6 -6 lines)
tjhunt committed 1 file to 'Moodle CVS' - 07/Jul/09 11:49 AM
MDL-19690 - pixpath - cannot use $OUTPUT in CSS. Use $PAGE->theme instead.
MODIFY mod/quiz/styles.php   Rev. 1.26    (+1 -1 lines)
Sam Hemelryk committed 1 file to 'Moodle CVS' - 08/Jul/09 09:56 AM
ajaxlib MDL-19690 Fixed minor bug because of missing global
MODIFY lib/ajax/ajaxlib.php   Rev. 1.68    (+1 -1 lines)
Eloy Lafuente (stronk7) committed 1 file to 'Moodle CVS' - 10/Aug/09 04:24 PM
MDL-19690 - fix mailyes|no icon
MODIFY user/view.php   Rev. 1.212    (+2 -2 lines)
Jerome Mouneyrac committed 1 file to 'Moodle CVS' - 11/Aug/09 02:36 PM
output MDL-19690 fix forgotten global $OUTPUT
MODIFY lib/adminlib.php   Rev. 1.384    (+1 -1 lines)