Changeset 703 for trunk/includes
- Timestamp:
- Jan 4, 2014, 1:14:24 AM (11 years ago)
- Location:
- trunk/includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/Version.php
r700 r703 6 6 // and system will need database update. 7 7 8 $Revision = 70 0; // Subversion revision8 $Revision = 703; // Subversion revision 9 9 $DatabaseRevision = 695; // Database structure revision 10 $ReleaseTime = '2014-01-0 2';10 $ReleaseTime = '2014-01-04'; -
trunk/includes/global.php
r691 r703 638 638 $Result = ''; 639 639 $I = 0; 640 while(strpos($Content, 'http://') !== false) 641 { 642 $I = strpos($Content, 'http://'); 640 while((strpos($Content, 'http://') !== false) or (strpos($Content, 'https://') !== false)) 641 { 642 if(strpos($Content, 'http://') !== false) $I = strpos($Content, 'http://'); 643 if(strpos($Content, 'https://') !== false) $I = strpos($Content, 'https://'); 643 644 $Result .= substr($Content, 0, $I); 644 645 $Content = substr($Content, $I);
Note:
See TracChangeset
for help on using the changeset viewer.