diff options
author | Steve Clay <steve@mrclay.org> | 2013-10-24 12:51:02 -0700 |
---|---|---|
committer | Steve Clay <steve@mrclay.org> | 2013-10-24 12:51:02 -0700 |
commit | 49914c591d5fda5f78ead1d948f172a73c4749a9 (patch) | |
tree | 093170227f2c824987627ce41dbb43c65a503e71 /engine/classes/ElggAttributeLoader.php | |
parent | b228d4a9eb98a98997bec1616044dba49fd00b44 (diff) | |
parent | 0deb80da1e82af55bf8d7500d09b36225ddd7927 (diff) | |
download | elgg-49914c591d5fda5f78ead1d948f172a73c4749a9.tar.gz elgg-49914c591d5fda5f78ead1d948f172a73c4749a9.tar.bz2 |
Merge pull request #6174 from jeabakker/6172-replace-references-to-trac-elgg-org
replace all references to trac.elgg.org to the correct GitHub URLs
Diffstat (limited to 'engine/classes/ElggAttributeLoader.php')
-rw-r--r-- | engine/classes/ElggAttributeLoader.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/engine/classes/ElggAttributeLoader.php b/engine/classes/ElggAttributeLoader.php index 0b770da75..ffc80b02d 100644 --- a/engine/classes/ElggAttributeLoader.php +++ b/engine/classes/ElggAttributeLoader.php @@ -4,7 +4,7 @@ * Loads ElggEntity attributes from DB or validates those passed in via constructor * * @access private - * + * * @package Elgg.Core * @subpackage DataModel */ @@ -69,7 +69,7 @@ class ElggAttributeLoader { /** * Constructor - * + * * @param string $class class of object being loaded * @param string $required_type entity type this is being used to populate * @param array $initialized_attrs attributes after initializeAttributes() has been run @@ -94,7 +94,7 @@ class ElggAttributeLoader { /** * Get primary attributes missing that are missing - * + * * @param stdClass $row Database row * @return array */ @@ -104,7 +104,7 @@ class ElggAttributeLoader { /** * Get secondary attributes that are missing - * + * * @param stdClass $row Database row * @return array */ @@ -114,7 +114,7 @@ class ElggAttributeLoader { /** * Check that the type is correct - * + * * @param stdClass $row Database row * @return void * @throws InvalidClassException @@ -216,7 +216,7 @@ class ElggAttributeLoader { // Note: If there are still missing attributes, we're running on a 1.7 or earlier schema. We let // this pass so the upgrades can run. - // guid needs to be an int http://trac.elgg.org/ticket/4111 + // guid needs to be an int https://github.com/elgg/elgg/issues/4111 $row['guid'] = (int) $row['guid']; return $row; |