Changeset 47733 for trunk/src/wp-includes/SimplePie/Caption.php
- Timestamp:
- 05/01/2020 02:24:42 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/SimplePie/Caption.php
r22798 r47733 6 6 * Takes the hard work out of managing a complete RSS/Atom solution. 7 7 * 8 * Copyright (c) 2004-201 2, Ryan Parman, GeoffreySneddon, Ryan McCue, and contributors8 * Copyright (c) 2004-2016, Ryan Parman, Sam Sneddon, Ryan McCue, and contributors 9 9 * All rights reserved. 10 10 * … … 34 34 * 35 35 * @package SimplePie 36 * @version 1.3.1 37 * @copyright 2004-2012 Ryan Parman, Geoffrey Sneddon, Ryan McCue 36 * @copyright 2004-2016 Ryan Parman, Sam Sneddon, Ryan McCue 38 37 * @author Ryan Parman 39 * @author GeoffreySneddon38 * @author Sam Sneddon 40 39 * @author Ryan McCue 41 40 * @link http://simplepie.org/ SimplePie … … 133 132 return $this->endTime; 134 133 } 135 else 136 { 137 return null; 138 } 134 135 return null; 139 136 } 140 137 … … 151 148 return $this->lang; 152 149 } 153 else 154 { 155 return null; 156 } 150 151 return null; 157 152 } 158 153 … … 168 163 return $this->startTime; 169 164 } 170 else 171 { 172 return null; 173 } 165 166 return null; 174 167 } 175 168 … … 185 178 return $this->text; 186 179 } 187 else 188 { 189 return null; 190 } 180 181 return null; 191 182 } 192 183 … … 202 193 return $this->type; 203 194 } 204 else 205 { 206 return null; 207 } 195 196 return null; 208 197 } 209 198 } 210
Note: See TracChangeset
for help on using the changeset viewer.