Changeset 20 for php/trunk/classes/rdfa_Data.php
- Timestamp:
- Jul 12, 2011, 12:10:21 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
php/trunk/classes/rdfa_Data.php
r17 r20 199 199 private function _subjectExists( $subject) { 200 200 201 $uriSubject = $this->resolve( $subject); 202 $uriSubject = ($uriSubject === NULL) ? $subject : $uriSubject; 201 $uriSubject = $this->shrink( $subject); 203 202 foreach ($this->aTriples as $aTriple) { 204 203 if ( $uriSubject == $this->shrink( $aTriple[ 's'])) … … 786 785 $fLogMessages = (!$this->_calledFromOwnCode()); 787 786 if (! $this->_subjectExists( $subject)) { 787 echo "### no subject \n"; 788 788 if ($fLogMessages) $this->debugger->sendMessage( "Cannot get projection for subject: $subject", 789 789 self::debugcontext); … … 1017 1017 1018 1018 } // public function _serialize 1019 1019 1020 1020 } // class Data 1021 1021
Note:
See TracChangeset
for help on using the changeset viewer.