Index: trunk/extensions/CategoryTree/README |
— | — | @@ -25,12 +25,12 @@ |
26 | 26 | LocalSettings.php file (near the end): |
27 | 27 | |
28 | 28 | $wgUseAjax = true; |
29 | | - require_once( 'extensions/CategoryTree/CategoryTree.php' ); |
| 29 | + require_once( "{$IP}extensions/CategoryTree/CategoryTree.php" ); |
30 | 30 | |
31 | | -Note that $wgUseAjax = true; will enable the ajax framework in MediaWiki, |
32 | | -which is required by the CategoryTree extension. AJAX is a term for using |
| 31 | +Note that $wgUseAjax = true; will enable the Ajax framework in MediaWiki, |
| 32 | +which is required by the CategoryTree extension. Ajax is a term for using |
33 | 33 | JavaScript to load parts of a page on demand. It is supported by all |
34 | | -recent graphic web browsers. For more information about AJAX see |
| 34 | +recent graphic web browsers. For more information about Ajax see |
35 | 35 | <http://en.wikipedia.org/wiki/Ajax_%28programming%29>. |
36 | 36 | |
37 | 37 | |