Fix undefined variable

This commit is contained in:
Jay Wood
2015-08-29 12:50:03 -04:00
parent a5b272828a
commit b5e902e514

View File

@ -39,7 +39,9 @@ class CWV3Admin {
public function post_cols( $cols ) {
return array_slice( $cols, 0, 1, true ) + array( 'cwv2' => 'CW' ) + array_slice( $cols, 1, count( $array ) - 1, true );
return array_slice( $cols, 0, 1, true ) +
array( 'cwv2' => 'CW' ) +
array_slice( $cols, 1, count( $cols ) - 1, true );
}