1. All my forms (based on the submit content form) now display 'date("w"): 0' above the form title.
This comes from line 312 of cf_watchman.php:
2.I had to replace all occurrences of '<div class="clear"> </div>' with '<div class="cfclear"> </div>' in my form code to fix messed up screen layouts.
3. form_element has been given a width (85%) which forces each field onto a new line. Previously I could get multiple fields on a line by omitting '<div class="clear"> </div>'
4. Various classes (?) which had a CSS specified width in 4.11 have no width in 5.0 - so for example an input field which was 150px now expands to fill the line (unless the field width is specified).
This comes from line 312 of cf_watchman.php:
// Check day of the week
echo 'date("w"): '.print_r(date("w"), true ).'</div>';
if ( $params->get('days') && !in_array( date('w'), $params->get('days')) ) {
$redirected = self::redirect('days', $params, 'Days of the week ('.implode(', ', $params->get('days')).') '.date('w').'');
}
2.I had to replace all occurrences of '<div class="clear"> </div>' with '<div class="cfclear"> </div>' in my form code to fix messed up screen layouts.
3. form_element has been given a width (85%) which forces each field onto a new line. Previously I could get multiple fields on a line by omitting '<div class="clear"> </div>'
4. Various classes (?) which had a CSS specified width in 4.11 have no width in 5.0 - so for example an input field which was 150px now expands to fill the line (unless the field width is specified).