Ticket #28467: set_transient.patch
| File set_transient.patch, 1.2 KB (added by , 12 years ago) |
|---|
-
htdocs/wp-includes/option.php
620 620 * 621 621 * @since 2.8.0 622 622 * 623 * @param string $transient Transient name. Expected to not be SQL-escaped. 623 * @param string $transient Transient name. Expected to not be SQL-escaped. Should be 45 characters or less in length. 624 624 * @param mixed $value Transient value. Must be serializable if non-scalar. Expected to not be SQL-escaped. 625 625 * @param int $expiration Time until expiration in seconds, default 0 626 626 * @return bool False if value was not set and true if value was set. … … 1360 1360 * 1361 1361 * @see set_transient() 1362 1362 * 1363 * @param string $transient Transient name. Expected to not be SQL-escaped. 1363 * @param string $transient Transient name. Expected to not be SQL-escaped. Should be 40 characters or less in length. 1364 1364 * @param mixed $value Transient value. Expected to not be SQL-escaped. 1365 1365 * @param int $expiration Time until expiration in seconds, default 0 1366 1366 * @return bool False if value was not set and true if value was set.