aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/elgglib.php
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-06 20:04:57 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-06 20:04:57 +0000
commit125dcdd329b3159808c097f02597e908be3ad8d0 (patch)
tree653b77aa409f867be32c45793edc68b099e15c69 /engine/lib/elgglib.php
parent61197684ae861488cd3718fcaa96ab655b37e426 (diff)
downloadelgg-125dcdd329b3159808c097f02597e908be3ad8d0.tar.gz
elgg-125dcdd329b3159808c097f02597e908be3ad8d0.tar.bz2
fixed some minor documentation issues
git-svn-id: http://code.elgg.org/elgg/trunk@8050 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/elgglib.php')
-rw-r--r--engine/lib/elgglib.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/engine/lib/elgglib.php b/engine/lib/elgglib.php
index 66477785e..de2d9bcdd 100644
--- a/engine/lib/elgglib.php
+++ b/engine/lib/elgglib.php
@@ -761,7 +761,7 @@ function elgg_trigger_event($event, $object_type, $object = null) {
* @example hooks/register/basic.php Registering for a plugin hook and examining the variables.
* @example hooks/register/advanced.php Registering for a plugin hook and changing the params.
* @link http://docs.elgg.org/Tutorials/Plugins/Hooks
- * @since 1.8
+ * @since 1.8.0
*/
function elgg_register_plugin_hook_handler($hook, $type, $callback, $priority = 500) {
global $CONFIG;
@@ -802,7 +802,7 @@ function elgg_register_plugin_hook_handler($hook, $type, $callback, $priority =
* @param callback $callback The PHP callback to be removed
*
* @return void
- * @since 1.8
+ * @since 1.8.0
*/
function elgg_unregister_plugin_hook_handler($hook, $entity_type, $callback) {
global $CONFIG;
@@ -853,7 +853,7 @@ function elgg_unregister_plugin_hook_handler($hook, $entity_type, $callback) {
* @example hooks/basic.php Trigger and respond to a basic plugin hook.
* @link http://docs.elgg.org/Tutorials/Plugins/Hooks
*
- * @since 1.8
+ * @since 1.8.0
*/
function elgg_trigger_plugin_hook($hook, $type, $params = null, $returnvalue = null) {
global $CONFIG;
@@ -1330,7 +1330,7 @@ function elgg_http_add_url_query_elements($url, array $elements) {
* @param array $ignore_params GET params to ignore in the comparison
*
* @return BOOL
- * @since 1.8
+ * @since 1.8.0
*/
function elgg_http_url_is_identical($url1, $url2, $ignore_params = array('offset', 'limit')) {
global $CONFIG;
@@ -1554,7 +1554,7 @@ function elgg_set_active_sticky_form($form_name) {
* return $default if the array key is unset or empty.
*
* @return void
- * @since 1.8
+ * @since 1.8.0
*/
function elgg_get_array_value($key, array $array, $default = NULL, $strict = true) {
if ($strict) {
@@ -1806,7 +1806,7 @@ function elgg_walled_garden_index() {
* plugin pages by {@elgg_hook public_pages walled_garden} will redirect to
* a login page.
*
- * @since 1.8
+ * @since 1.8.0
* @elgg_event_handler init system
* @link http://docs.elgg.org/Tutorials/WalledGarden
* @return void