]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
found some more references to trac
authorJerome Bakker <jeabakker@coldtrick.com>
Wed, 23 Oct 2013 14:03:08 +0000 (16:03 +0200)
committerJerome Bakker <jeabakker@coldtrick.com>
Wed, 23 Oct 2013 14:03:08 +0000 (16:03 +0200)
engine/lib/elgglib.php
engine/lib/views.php
engine/tests/objects/users.php
engine/tests/regression/trac_bugs.php

index b5ef7e572ff51d0736c1048c31f081aa0813288d..c95e0c28ced54276ff5a5c3f6a7f16032ad35c7a 100644 (file)
@@ -1350,7 +1350,7 @@ function full_url() {
                "" : (":" . $_SERVER["SERVER_PORT"]);
 
        // This is here to prevent XSS in poorly written browsers used by 80% of the population.
-       // {@trac [5813]}
+       // https://github.com/Elgg/Elgg/commit/0c947e80f512cb0a482b1864fd0a6965c8a0cd4a
        $quotes = array('\'', '"');
        $encoded = array('%27', '%22');
 
@@ -2249,7 +2249,7 @@ function elgg_api_test($hook, $type, $value, $params) {
  *
  * @warning ACCESS_DEFAULT is a place holder for the input/access view. Do not
  * use it when saving an entity.
- * 
+ *
  * @var int
  */
 define('ACCESS_DEFAULT', -1);
index dc69395c62b2ab447bdfc76bed7322dd44278d49..fff3581cfe060a8d9a2822c34daf278b3387e2cf 100644 (file)
@@ -369,7 +369,7 @@ function elgg_view_exists($view, $viewtype = '', $recurse = true) {
  * view, $view_name plugin hook.
  *
  * @warning Any variables in $_SESSION will override passed vars
- * upon name collision.  See {@trac #2124}.
+ * upon name collision.  See https://github.com/Elgg/Elgg/issues/2124
  *
  * @param string  $view     The name and location of the view to use
  * @param array   $vars     Variables to pass to the view.
@@ -795,7 +795,7 @@ function elgg_view_menu($menu_name, array $vars = array()) {
  *  - bool 'full_view' Whether to show a full or condensed view.
  *
  * @tip This function can automatically appends annotations to entities if in full
- * view and a handler is registered for the entity:annotate.  See {@trac 964} and
+ * view and a handler is registered for the entity:annotate.  See https://github.com/Elgg/Elgg/issues/964 and
  * {@link elgg_view_entity_annotations()}.
  *
  * @param ElggEntity $entity The entity to display
index 7d2ef6961bff5c343fced96f994b0d4bf51c29a1..8a1033ac4b20f0c858b072ddf834c68afd54e893 100644 (file)
@@ -145,7 +145,7 @@ class ElggCoreUserTest extends ElggCoreUnitTest {
        }
 
        public function testElggUserNameCache() {
-               // Trac #1305
+               // issue https://github.com/elgg/elgg/issues/1305
 
                // very unlikely a user would have this username
                $name = (string)time();
index 9372b08550c457a1a0a85008bfaf524cadda1b1f..f823825abddf9748aa75976fe3a32abd58ba9d73 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /**
- * Elgg Regression Tests -- Trac Bugfixes
- * Any bugfixes from Trac that require testing belong here.
+ * Elgg Regression Tests -- GitHub Bugfixes
+ * Any bugfixes from GitHub that require testing belong here.
  *
  * @package Elgg
  * @subpackage Test