diff -Naur moodle_old/lib//accesslib.php moodle_latest/lib//accesslib.php
--- moodle_old/lib//accesslib.php 2012-02-18 05:34:25.000000000 +0530
+++ moodle_latest/lib//accesslib.php 2012-03-28 17:57:34.000000000 +0530
@@ -482,7 +482,7 @@
* the capabilities that most users are likely to have first in the list for best
* performance.
*
- * @see has_capability()
+ * @link has_capability()
* @param array $capabilities an array of capability names.
* @param context $context the context to check the capability in. You normally get this with {@link get_context_instance}.
* @param integer $userid A user id. By default (null) checks the permissions of the current user.
@@ -505,7 +505,7 @@
* the capabilities that fewest users are likely to have first in the list for best
* performance.
*
- * @see has_capability()
+ * @link has_capability()
* @param array $capabilities an array of capability names.
* @param context $context the context to check the capability in. You normally get this with {@link get_context_instance}.
* @param integer $userid A user id. By default (null) checks the permissions of the current user.
@@ -675,7 +675,7 @@
* You must call require_login (or one of its variants) if you want to check the
* user is logged in, before you call this function.
*
- * @see has_capability()
+ * @link has_capability()
*
* @param string $capability the name of the capability to check. For example mod/forum:view
* @param context $context the context to check the capability in. You normally get this with {@link get_context_instance}.
@@ -1101,7 +1101,7 @@
* for the current user. It is called from has_capability() and functions change permissions.
*
* Call it only _after_ you've setup $USER and called check_enrolment_plugins();
- * @see check_enrolment_plugins()
+ * @link check_enrolment_plugins()
*
* @private
* @return void
diff -Naur moodle_old/lib//adminlib.php moodle_latest/lib//adminlib.php
--- moodle_old/lib//adminlib.php 2012-03-16 05:34:30.000000000 +0530
+++ moodle_latest/lib//adminlib.php 2012-03-28 17:57:34.000000000 +0530
@@ -2519,7 +2519,7 @@
/**
* Returns XHTML select field and wrapping div(s)
*
- * @see output_select_html()
+ * @link output_select_html()
*
* @param string $data the option to show as selected
* @param string $query
@@ -3005,7 +3005,7 @@
/**
* Returns the site name for the selected site
*
- * @see get_site()
+ * @link get_site()
* @return string The site name of the selected site
*/
public function get_setting() {
@@ -3481,10 +3481,10 @@
}
/**
- * Converts the array of emoticon objects provided by {@see emoticon_manager} into admin settings form data
+ * Converts the array of emoticon objects provided by {@link emoticon_manager} into admin settings form data
*
- * @see self::process_form_data()
- * @param array $emoticons array of emoticon objects as returned by {@see emoticon_manager}
+ * @link self::process_form_data()
+ * @param array $emoticons array of emoticon objects as returned by {@link emoticon_manager}
* @return array of form fields and their values
*/
protected function prepare_form_data(array $emoticons) {
@@ -3512,7 +3512,7 @@
/**
* Converts the data from admin settings form into an array of emoticon objects
*
- * @see self::prepare_form_data()
+ * @link self::prepare_form_data()
* @param array $data array of admin form fields and values
* @return false|array of emoticon objects
*/
@@ -7829,7 +7829,7 @@
/**
* Converts the string of regexes
*
- * @see self::process_form_data()
+ * @link self::process_form_data()
* @param $regexes string of regexes
* @return array of form fields and their values
*/
@@ -7856,7 +7856,7 @@
/**
* Converts the data from admin settings form into a string of regexes
*
- * @see self::prepare_form_data()
+ * @link self::prepare_form_data()
* @param array $data array of admin form fields and values
* @return false|string of regexes
*/
diff -Naur moodle_old/lib//blocklib.php moodle_latest/lib//blocklib.php
--- moodle_old/lib//blocklib.php 2012-01-20 05:34:16.000000000 +0530
+++ moodle_latest/lib//blocklib.php 2012-03-28 17:57:34.000000000 +0530
@@ -386,7 +386,7 @@
/**
* Add an array of regions
- * @see add_region()
+ * @link add_region()
*
* @param array $regions this utility method calls add_region for each array element.
*/
@@ -446,7 +446,7 @@
/**
* Checks to see whether all of the blocks within the given region are docked
*
- * @see region_uses_dock
+ * @link region_uses_dock
* @param string $region
* @return bool True if all of the blocks within that region are docked
*/
@@ -467,7 +467,7 @@
/**
* Checks to see whether any of the blocks within the given regions are docked
*
- * @see region_completely_docked
+ * @link region_completely_docked
* @param array|string $regions array of regions (or single region)
* @return bool True if any of the blocks within that region are docked
*/
@@ -710,8 +710,8 @@
* Convenience method, calls add_block repeatedly for all the blocks in $blocks.
*
* @param array $blocks array with array keys the region names, and values an array of block names.
- * @param string $pagetypepattern optional. Passed to @see add_block()
- * @param string $subpagepattern optional. Passed to @see add_block()
+ * @param string $pagetypepattern optional. Passed to @link add_block()
+ * @param string $subpagepattern optional. Passed to @link add_block()
*/
public function add_blocks($blocks, $pagetypepattern = NULL, $subpagepattern = NULL, $showinsubcontexts=false, $weight=0) {
$this->add_regions(array_keys($blocks));
@@ -1873,7 +1873,7 @@
*
* @param object $instance a row from the block_instances table
* @param bool $nolongerused legacy parameter. Not used, but kept for backwards compatibility.
- * @param bool $skipblockstables for internal use only. Makes @see blocks_delete_all_for_context() more efficient.
+ * @param bool $skipblockstables for internal use only. Makes @link blocks_delete_all_for_context() more efficient.
*/
function blocks_delete_instance($instance, $nolongerused = false, $skipblockstables = false) {
global $DB;
diff -Naur moodle_old/lib//completionlib.php moodle_latest/lib//completionlib.php
--- moodle_old/lib//completionlib.php 2011-12-06 14:51:43.000000000 +0530
+++ moodle_latest/lib//completionlib.php 2012-03-28 17:57:34.000000000 +0530
@@ -131,7 +131,7 @@
* Completion criteria
* @access private
* @var array
- * @see completion_info->get_criteria()
+ * @link completion_info->get_criteria()
*/
private $criteria;
diff -Naur moodle_old/lib//componentlib.class.php moodle_latest/lib//componentlib.class.php
--- moodle_old/lib//componentlib.class.php 2011-12-06 14:51:43.000000000 +0530
+++ moodle_latest/lib//componentlib.class.php 2012-03-28 17:57:34.000000000 +0530
@@ -732,7 +732,7 @@
/**
* Checks if the given language has already been processed by this instance
*
- * @see self::mark_processed()
+ * @link self::mark_processed()
* @param string $langcode
* @return boolean
*/
@@ -743,7 +743,7 @@
/**
* Mark the given language pack as processed
*
- * @see self::was_processed()
+ * @link self::was_processed()
* @param string $langcode
*/
protected function mark_processed($langcode) {
diff -Naur moodle_old/lib//conditionlib.php moodle_latest/lib//conditionlib.php
--- moodle_old/lib//conditionlib.php 2011-12-06 14:51:43.000000000 +0530
+++ moodle_latest/lib//conditionlib.php 2012-03-28 17:57:34.000000000 +0530
@@ -194,7 +194,7 @@
}
/**
- * @see require_data()
+ * @link require_data()
* @return object A course-module object with all the information required to
* determine availability.
*/
diff -Naur moodle_old/lib//deprecatedlib.php moodle_latest/lib//deprecatedlib.php
--- moodle_old/lib//deprecatedlib.php 2011-12-06 14:51:43.000000000 +0530
+++ moodle_latest/lib//deprecatedlib.php 2012-03-28 17:57:34.000000000 +0530
@@ -1247,7 +1247,7 @@
}
/**
* @deprecated use $DB->record_exists_select() instead
- * @see moodle_database::record_exists_select()
+ * @link moodle_database::record_exists_select()
* @param mixed $table
* @param mixed $select
* @return void Throws an error and does nothing
@@ -1257,7 +1257,7 @@
}
/**
* @deprecated use $DB->record_exists_sql() instead
- * @see moodle_database::record_exists_sql()
+ * @link moodle_database::record_exists_sql()
* @param mixed $sql
* @return void Throws an error and does nothing
*/
@@ -1266,7 +1266,7 @@
}
/**
* @deprecated use $DB->count_records_select() instead
- * @see moodle_database::count_records_select()
+ * @link moodle_database::count_records_select()
* @param mixed $table
* @param mixed $select
* @param mixed $countitem
@@ -1277,7 +1277,7 @@
}
/**
* @deprecated use $DB->count_records_sql() instead
- * @see moodle_database::count_records_sql()
+ * @link moodle_database::count_records_sql()
* @param mixed $sql
* @return void Throws an error and does nothing
*/
@@ -1286,7 +1286,7 @@
}
/**
* @deprecated use $DB->get_record_sql() instead
- * @see moodle_database::get_record_sql()
+ * @link moodle_database::get_record_sql()
* @param mixed $sql
* @param bool $expectmultiple
* @param bool $nolimit
@@ -1297,7 +1297,7 @@
}
/**
* @deprecated use $DB->get_record_select() instead
- * @see moodle_database::get_record_select()
+ * @link moodle_database::get_record_select()
* @param mixed $table
* @param mixed $select
* @param mixed $fields
@@ -1308,7 +1308,7 @@
}
/**
* @deprecated use $DB->get_recordset() instead
- * @see moodle_database::get_recordset()
+ * @link moodle_database::get_recordset()
* @param mixed $table
* @param mixed $field
* @param mixed $value
@@ -1323,7 +1323,7 @@
}
/**
* @deprecated use $DB->get_recordset_sql() instead
- * @see moodle_database::get_recordset_sql()
+ * @link moodle_database::get_recordset_sql()
* @param mixed $sql
* @param mixed $limitfrom
* @param mixed $limitnum
@@ -1374,7 +1374,7 @@
}
/**
* @deprecated use $DB->get_records_select() instead
- * @see moodle_database::get_records_select()
+ * @link moodle_database::get_records_select()
* @param mixed $table
* @param mixed $select
* @param mixed $sort
@@ -1388,7 +1388,7 @@
}
/**
* @deprecated use $DB->get_field_select() instead
- * @see moodle_database::get_field_select()
+ * @link moodle_database::get_field_select()
* @param mixed $table
* @param mixed $return
* @param mixed $select
@@ -1399,7 +1399,7 @@
}
/**
* @deprecated use $DB->get_field_sql() instead
- * @see moodle_database::get_field_sql()
+ * @link moodle_database::get_field_sql()
* @param mixed $sql
* @return void Throws an error and does nothing
*/
@@ -1408,7 +1408,7 @@
}
/**
* @deprecated use $DB->delete_records_select() instead
- * @see moodle_database::delete_records_select()
+ * @link moodle_database::delete_records_select()
* @param mixed $sql
* @param mixed $select
* @return void Throws an error and does nothing
@@ -1495,7 +1495,7 @@
}
/**
* @deprecated use $DB->get_records_list() instead
- * @see moodle_database::get_records_list()
+ * @link moodle_database::get_records_list()
* @param mixed $table
* @param mixed $field
* @param mixed $values
@@ -1510,7 +1510,7 @@
}
/**
* @deprecated use $DB->get_recordset_list() instead
- * @see moodle_database::get_recordset_list()
+ * @link moodle_database::get_recordset_list()
* @param mixed $table
* @param mixed $field
* @param mixed $values
@@ -1525,7 +1525,7 @@
}
/**
* @deprecated use $DB->get_records_menu() instead
- * @see moodle_database::get_records_menu()
+ * @link moodle_database::get_records_menu()
* @param mixed $table
* @param mixed $field
* @param mixed $value
@@ -1540,7 +1540,7 @@
}
/**
* @deprecated use $DB->get_records_select_menu() instead
- * @see moodle_database::get_records_select_menu()
+ * @link moodle_database::get_records_select_menu()
* @param mixed $table
* @param mixed $select
* @param mixed $sort
@@ -1554,7 +1554,7 @@
}
/**
* @deprecated use $DB->get_records_sql_menu() instead
- * @see moodle_database::get_records_sql_menu()
+ * @link moodle_database::get_records_sql_menu()
* @param mixed $sql
* @param mixed $limitfrom
* @param mixed $limitnum
@@ -1592,7 +1592,7 @@
}
/**
* @deprecated use $DB->set_field_select() instead
- * @see moodle_database::set_field_select()
+ * @link moodle_database::set_field_select()
* @param mixed $table
* @param mixed $newfield
* @param mixed $newvalue
@@ -1605,7 +1605,7 @@
}
/**
* @deprecated use $DB->get_fieldset_select() instead
- * @see moodle_database::get_fieldset_select()
+ * @link moodle_database::get_fieldset_select()
* @param mixed $table
* @param mixed $return
* @param mixed $select
@@ -1616,7 +1616,7 @@
}
/**
* @deprecated use $DB->get_fieldset_sql() instead
- * @see moodle_database::get_fieldset_sql()
+ * @link moodle_database::get_fieldset_sql()
* @param mixed $sql
* @return void Throws an error and does nothing
*/
@@ -1625,7 +1625,7 @@
}
/**
* @deprecated use $DB->sql_like() instead
- * @see moodle_database::sql_like()
+ * @link moodle_database::sql_like()
* @return void Throws an error and does nothing
*/
function sql_ilike() {
@@ -1785,7 +1785,7 @@
}
/**
* @deprecated use $DB->insert_record() instead
- * @see moodle_database::insert_record()
+ * @link moodle_database::insert_record()
* @param mixed $table
* @param mixed $dataobject
* @param mixed $returnid
@@ -1797,7 +1797,7 @@
}
/**
* @deprecated use $DB->update_record() instead
- * @see moodle_database::update_record()
+ * @link moodle_database::update_record()
* @param mixed $table
* @param mixed $dataobject
* @return void Throws an error and does nothing
@@ -1807,7 +1807,7 @@
}
/**
* @deprecated use $DB->get_records() instead
- * @see moodle_database::get_records()
+ * @link moodle_database::get_records()
* @param mixed $table
* @param mixed $field
* @param mixed $value
@@ -1823,7 +1823,7 @@
}
/**
* @deprecated use $DB->get_record() instead
- * @see moodle_database::get_record()
+ * @link moodle_database::get_record()
* @param mixed $table
* @param mixed $field1
* @param mixed $value1
@@ -1839,7 +1839,7 @@
}
/**
* @deprecated use $DB->set_field() instead
- * @see moodle_database::set_field()
+ * @link moodle_database::set_field()
* @param mixed $table
* @param mixed $newfield
* @param mixed $newvalue
@@ -1856,7 +1856,7 @@
}
/**
* @deprecated use $DB->count_records() instead
- * @see moodle_database::count_records()
+ * @link moodle_database::count_records()
* @param mixed $table
* @param mixed $field1
* @param mixed $value1
@@ -1871,7 +1871,7 @@
}
/**
* @deprecated use $DB->record_exists() instead
- * @see moodle_database::record_exists()
+ * @link moodle_database::record_exists()
* @param mixed $table
* @param mixed $field1
* @param mixed $value1
@@ -1886,7 +1886,7 @@
}
/**
* @deprecated use $DB->delete_records() instead
- * @see moodle_database::delete_records()
+ * @link moodle_database::delete_records()
* @param mixed $table
* @param mixed $field1
* @param mixed $value1
@@ -1901,7 +1901,7 @@
}
/**
* @deprecated use $DB->get_field() instead
- * @see moodle_database::get_field()
+ * @link moodle_database::get_field()
* @param mixed $table
* @param mixed $return
* @param mixed $field1
@@ -3295,7 +3295,7 @@
* @deprecated since Moodle 2.0
*
* Calls {@link choose_from_menu()} with preset arguments
- * @see choose_from_menu()
+ * @link choose_from_menu()
*
* @param string $name the name of this form control, as in <select name="..." ...
* @param string $selected the option to select initially, default none.
@@ -3385,7 +3385,7 @@
* @deprecated since Moodle 2.0
*
* Uses {@link choose_from_menu()} to generate HTML
- * @see choose_from_menu()
+ * @link choose_from_menu()
*
* @global object
* @param int $timelimit default
diff -Naur moodle_old/lib//dtllib.php moodle_latest/lib//dtllib.php
--- moodle_old/lib//dtllib.php 2011-12-06 14:51:43.000000000 +0530
+++ moodle_latest/lib//dtllib.php 2012-03-28 17:57:34.000000000 +0530
@@ -53,7 +53,7 @@
/**
* Exception class for db transfer
- * @see moodle_exception
+ * @link moodle_exception
*/
class dbtransfer_exception extends moodle_exception {
/**
diff -Naur moodle_old/lib//enrollib.php moodle_latest/lib//enrollib.php
--- moodle_old/lib//enrollib.php 2012-03-16 05:34:30.000000000 +0530
+++ moodle_latest/lib//enrollib.php 2012-03-28 17:57:34.000000000 +0530
@@ -233,7 +233,7 @@
* The courses has to be visible and enrolments has to be active,
* timestart and timeend restrictions are ignored.
*
- * This function calls {@see enrol_get_shared_courses()} setting checkexistsonly
+ * This function calls {@link enrol_get_shared_courses()} setting checkexistsonly
* to true.
*
* @param stdClass|int $user1
diff -Naur moodle_old/lib//filelib.php moodle_latest/lib//filelib.php
--- moodle_old/lib//filelib.php 2012-01-20 05:34:16.000000000 +0530
+++ moodle_latest/lib//filelib.php 2012-03-28 17:57:34.000000000 +0530
@@ -2780,7 +2780,7 @@
/**
* HTTP HEAD method
*
- * @see request()
+ * @link request()
*
* @param string $url
* @param array $options
diff -Naur moodle_old/lib//flickrlib.php moodle_latest/lib//flickrlib.php
--- moodle_old/lib//flickrlib.php 2010-11-12 05:31:35.000000000 +0530
+++ moodle_latest/lib//flickrlib.php 2012-03-28 17:57:34.000000000 +0530
@@ -1094,7 +1094,7 @@
* Upload a photo from Moodle file pool to Flickr
*
* Optional meta information are title, description, tags, is_public, is_friend, is_family, safety_level,
- * content_type and hidden {@see http://www.flickr.com/services/api/upload.api.html}
+ * content_type and hidden {@link http://www.flickr.com/services/api/upload.api.html}
*
* @param stored_file $photo stored in Moodle file pool
* @param array $meta optional meta information
diff -Naur moodle_old/lib//formslib.php moodle_latest/lib//formslib.php
--- moodle_old/lib//formslib.php 2012-03-16 05:34:31.000000000 +0530
+++ moodle_latest/lib//formslib.php 2012-03-28 17:57:34.000000000 +0530
@@ -448,7 +448,7 @@
/**
* Check that form data is valid.
- * You should almost always use this, rather than {@see validate_defined_fields}
+ * You should almost always use this, rather than {@link validate_defined_fields}
*
* @staticvar bool $validated
* @return bool true if form data valid
@@ -466,8 +466,8 @@
/**
* Validate the form.
*
- * You almost always want to call {@see is_validated} instead of this
- * because it calls {@see definition_after_data} first, before validating the form,
+ * You almost always want to call {@link is_validated} instead of this
+ * because it calls {@link definition_after_data} first, before validating the form,
* which is what you want in 99% of cases.
*
* This is provided as a separate function for those special cases where
diff -Naur moodle_old/lib//html2text.php moodle_latest/lib//html2text.php
--- moodle_old/lib//html2text.php 2012-03-02 05:34:11.000000000 +0530
+++ moodle_latest/lib//html2text.php 2012-03-28 17:57:34.000000000 +0530
@@ -133,7 +133,7 @@
*
* @var array $search
* @access public
- * @see $replace
+ * @link $replace
*/
var $search = array(
"/\r/", // Non-legal carriage return
@@ -178,7 +178,7 @@
*
* @var array $replace
* @access public
- * @see $search
+ * @link $search
*/
var $replace = array(
'', // Non-legal carriage return
@@ -240,7 +240,7 @@
*
* @var array $pre_search
* @access public
- * @see $pre_replace
+ * @link $pre_replace
*/
var $pre_search = array(
"/\n/",
@@ -255,7 +255,7 @@
*
* @var array $pre_replace
* @access public
- * @see $pre_search
+ * @link $pre_search
*/
var $pre_replace = array(
'
',
@@ -270,7 +270,7 @@
*
* @var string $allowed_tags
* @access public
- * @see set_allowed_tags()
+ * @link set_allowed_tags()
*/
var $allowed_tags = '';
@@ -287,7 +287,7 @@
*
* @var boolean $_converted
* @access private
- * @see $html, $text
+ * @link $html, $text
*/
var $_converted = false;
@@ -296,7 +296,7 @@
*
* @var string $_link_list
* @access private
- * @see _build_link_list()
+ * @link _build_link_list()
*/
var $_link_list = '';
@@ -306,7 +306,7 @@
*
* @var integer $_link_count
* @access private
- * @see _build_link_list()
+ * @link _build_link_list()
*/
var $_link_count = 0;
@@ -315,7 +315,7 @@
*
* @var boolean $_do_links
* @access private
- * @see html2text()
+ * @link html2text()
*/
var $_do_links = true;
@@ -394,7 +394,7 @@
*
* @access public
* @return void
- * @see print_text()
+ * @link print_text()
*/
function p()
{
diff -Naur moodle_old/lib//installlib.php moodle_latest/lib//installlib.php
--- moodle_old/lib//installlib.php 2011-12-06 14:51:43.000000000 +0530
+++ moodle_latest/lib//installlib.php 2012-03-28 17:57:34.000000000 +0530
@@ -65,7 +65,7 @@
}
/**
- * Copy of @see{ini_get_bool()}
+ * Copy of @link{ini_get_bool()}
* @param string $ini_get_arg
* @return bool
*/
diff -Naur moodle_old/lib//mathslib.php moodle_latest/lib//mathslib.php
--- moodle_old/lib//mathslib.php 2010-07-26 05:30:53.000000000 +0530
+++ moodle_latest/lib//mathslib.php 2012-03-28 17:57:35.000000000 +0530
@@ -24,7 +24,7 @@
defined('MOODLE_INTERNAL') || die();
-/** @see evalmath/evalmath.class.php */
+/** @link evalmath/evalmath.class.php */
require_once $CFG->dirroot.'/lib/evalmath/evalmath.class.php';
/**
diff -Naur moodle_old/lib//messagelib.php moodle_latest/lib//messagelib.php
--- moodle_old/lib//messagelib.php 2012-01-06 05:34:20.000000000 +0530
+++ moodle_latest/lib//messagelib.php 2012-03-28 17:57:35.000000000 +0530
@@ -366,7 +366,7 @@
/**
* Returns the active providers for the current user, based on capability
*
- * This function has been deprecated please use {@see message_get_providers_for_user()} instead.
+ * This function has been deprecated please use {@link message_get_providers_for_user()} instead.
*
* @deprecated since 2.1
* @todo Remove in 2.2
diff -Naur moodle_old/lib//modinfolib.php moodle_latest/lib//modinfolib.php
--- moodle_old/lib//modinfolib.php 2011-12-06 14:51:43.000000000 +0530
+++ moodle_latest/lib//modinfolib.php 2012-03-28 17:57:35.000000000 +0530
@@ -1187,8 +1187,8 @@
* to define the icon, as per pix_url function.
* For backward compatibility, if this value is of the form 'mod/forum/icon' then an icon
* within that module will be used.
- * @see cm_info::get_icon_url()
- * @see renderer_base::pix_url()
+ * @link cm_info::get_icon_url()
+ * @link renderer_base::pix_url()
* @var string
*/
public $icon;
@@ -1196,7 +1196,7 @@
/**
* Component for icon for this activity, as per pix_url; leave blank to use default 'moodle'
* component
- * @see renderer_base::pix_url()
+ * @link renderer_base::pix_url()
* @var string
*/
public $iconcomponent;
diff -Naur moodle_old/lib//moodlelib.php moodle_latest/lib//moodlelib.php
--- moodle_old/lib//moodlelib.php 2012-03-16 05:34:31.000000000 +0530
+++ moodle_latest/lib//moodlelib.php 2012-03-28 17:57:35.000000000 +0530
@@ -2905,7 +2905,7 @@
* This is a weaker version of {@link require_login()} which only requires login
* when called from within a course rather than the site page, unless
* the forcelogin option is turned on.
- * @see require_login()
+ * @link require_login()
*
* @global object
* @param mixed $courseorid The course object or id in question
@@ -5865,7 +5865,7 @@
/**
* Cleans a given filename by removing suspicious or troublesome characters
- * @see clean_param()
+ * @link clean_param()
*
* @uses PARAM_FILE
* @param string $string file name
@@ -7131,7 +7131,7 @@
* structure is expected: stdClass with properties text, imagename, imagecomponent,
* altidentifier and altcomponent
*
- * @see admin_setting_emoticons
+ * @link admin_setting_emoticons
*/
class emoticon_manager {
@@ -7178,7 +7178,7 @@
/**
* Encodes the array of emoticon objects into a string storable in config table
*
- * @see self::decode_stored_config()
+ * @link self::decode_stored_config()
* @param array $emoticons array of emtocion objects
* @return string
*/
@@ -7189,7 +7189,7 @@
/**
* Decodes the string into an array of emoticon objects
*
- * @see self::encode_stored_config()
+ * @link self::encode_stored_config()
* @param string $encoded
* @return string|null
*/
@@ -7245,10 +7245,10 @@
* Helper method preparing the stdClass with the emoticon properties
*
* @param string|array $text or array of strings
- * @param string $imagename to be used by {@see pix_emoticon}
+ * @param string $imagename to be used by {@link pix_emoticon}
* @param string $altidentifier alternative string identifier, null for no alt
* @param array $altcomponent where the alternative string is defined
- * @param string $imagecomponent to be used by {@see pix_emoticon}
+ * @param string $imagecomponent to be used by {@link pix_emoticon}
* @return stdClass
*/
protected function prepare_emoticon_object($text, $imagename, $altidentifier = null, $altcomponent = 'core_pix', $imagecomponent = 'core') {
@@ -10428,7 +10428,7 @@
/**
* during the xmlrpc server code execution, this will be called
- * to setup the object returned by {@see get_mnet_remote_client}
+ * to setup the object returned by {@link get_mnet_remote_client}
*
* @param mnet_remote_client $client the client to set up
*/
diff -Naur moodle_old/lib//navigationlib.php moodle_latest/lib//navigationlib.php
--- moodle_old/lib//navigationlib.php 2012-02-18 05:34:26.000000000 +0530
+++ moodle_latest/lib//navigationlib.php 2012-03-28 17:57:35.000000000 +0530
@@ -390,7 +390,7 @@
* Marks this node as active and forces it open.
*
* Important: If you are here because you need to mark a node active to get
- * the navigation to do what you want have you looked at {@see navigation_node::override_active_url()}?
+ * the navigation to do what you want have you looked at {@link navigation_node::override_active_url()}?
* You can use it to specify a different URL to match the active navigation node on
* rather than having to locate and manually mark a node active.
*/
@@ -1572,7 +1572,7 @@
* formats lib.php file to customise the navigation that is generated at this
* point for the course.
*
- * By default (if not defined) the method {@see load_generic_course_sections} is
+ * By default (if not defined) the method {@link load_generic_course_sections} is
* called instead.
*
* @param stdClass $course Database record for the course
@@ -1732,7 +1732,7 @@
*
* @param navigation_node $sectionnode
* @param int $sectionnumber
- * @param course_modinfo $modinfo Object returned from {@see get_fast_modinfo()}
+ * @param course_modinfo $modinfo Object returned from {@link get_fast_modinfo()}
* @return array Array of activity nodes
*/
protected function load_section_activities(navigation_node $sectionnode, $sectionnumber, $activities) {
@@ -1830,8 +1830,8 @@
*
* The callback is a method: {modulename}_extend_navigation()
* Examples:
- * * {@see forum_extend_navigation()}
- * * {@see workshop_extend_navigation()}
+ * * {@link forum_extend_navigation()}
+ * * {@link workshop_extend_navigation()}
*
* @param cm_info|stdClass $cm
* @param stdClass $course
@@ -2425,9 +2425,9 @@
* This function only looks at this nodes children, it does NOT look recursivily.
* If the node can't be found then false is returned.
*
- * If you need to search recursivily then use the {@see find()} method.
+ * If you need to search recursivily then use the {@link find()} method.
*
- * Note: If you are trying to set the active node {@see navigation_node::override_active_url()}
+ * Note: If you are trying to set the active node {@link navigation_node::override_active_url()}
* may be of more use to you.
*
* @param string|int $key The key of the node you wish to receive.
@@ -2449,9 +2449,9 @@
* found of there are no more nodes to search.
*
* If you know that the node being searched for is a child of this node
- * then use the {@see get()} method instead.
+ * then use the {@link get()} method instead.
*
- * Note: If you are trying to set the active node {@see navigation_node::override_active_url()}
+ * Note: If you are trying to set the active node {@link navigation_node::override_active_url()}
* may be of more use to you.
*
* @param string|int $key The key of the node you wish to receive.
diff -Naur moodle_old/lib//outputcomponents.php moodle_latest/lib//outputcomponents.php
--- moodle_old/lib//outputcomponents.php 2012-01-28 05:34:23.000000000 +0530
+++ moodle_latest/lib//outputcomponents.php 2012-03-28 17:57:35.000000000 +0530
@@ -1696,7 +1696,7 @@
}
/**
- * Holds all the information required to render a