Changeset 2833907
- Timestamp:
- 12/14/2022 04:40:04 PM (3 years ago)
- Location:
- rsscloud/trunk
- Files:
-
- 3 edited
-
notification-request.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
rsscloud.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
rsscloud/trunk/notification-request.php
r1198145 r2833907 27 27 28 28 $path = str_replace( '@', '', $_POST['path'] ); 29 if ( $path {0}!= '/' )29 if ( $path[0] != '/' ) 30 30 $path = '/' . $path; 31 31 -
rsscloud/trunk/readme.txt
r1395594 r2833907 13 13 14 14 == Changelog == 15 16 = 0.5.0 = 17 * Updates to support PHP 8+ 15 18 16 19 = 0.4.2 = -
rsscloud/trunk/rsscloud.php
r1395589 r2833907 90 90 } else { 91 91 for ( $i = 0; $i < $length; $i++ ) { 92 $string .= $chars {mt_rand( 0, $chars_length - 1)};92 $string .= $chars[mt_rand( 0, $chars_length - 1)]; 93 93 } 94 94 }
Note: See TracChangeset
for help on using the changeset viewer.