so I'm using prestashop 1.6.1.10 and I asked the guy who made a module for some modification of the code and he told me to add these lines of code and some others in another file but the error comes from these lines. This Is a php file.
line number / code
2327 $minute = '00';
2328 if ($hour == 15) {
2329 $minute = '30';
2330 }
2331 $weekly_open_hours[$day_of_week]['hours'][$hour] = array(
2332 'id' => 'd'.$day_of_week.'h'.$hour,
2333 'text' => $hour.':'.$minute,
2334 'full_time' => str_pad($hour, 2, '0', STR_PAD_LEFT).':'.$minute':00',
2335 'disabled' => $disabled,
2336 'current' => $current,
2337 'hour' => $hour
2338 );
when I try to visualize my website again after the modifications either the Front Office page and the Back Office page of my website don't work anymore and chrome gives me this error:
"Parse error: syntax error, unexpected '':00'' (T_CONSTANT_ENCAPSED_STRING), expecting ')' in \modules\fspickupatstorecarrier\fspickupatstorecarrier.php on line 2334."
So I can't use the front office or the back office.
What can I do?
p.s.:sorry if there is any problem with the way I've written the lines of code
thanks, Lorenzo