Changeset 382439
- Timestamp:
- 05/08/2011 01:23:13 PM (15 years ago)
- File:
-
- 1 edited
-
automatic-post-scheduler/trunk/settings.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
automatic-post-scheduler/trunk/settings.php
r313569 r382439 85 85 ); 86 86 87 $data['min'] *= $factors[$data['min_unit']];88 $data['max'] *= $factors[$data['max_unit']];87 $data['min'] *= isset( $factors[$data['min_unit']] ) ? $factors[$data['min_unit']] : 1; 88 $data['max'] *= isset( $factors[$data['max_unit']] ) ? $factors[$data['max_unit']] : 1; 89 89 90 90 unset( $data['min_unit'], $data['max_unit'] );
Note: See TracChangeset
for help on using the changeset viewer.