File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
frontend/express/public/localization/dashboard Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -163,15 +163,15 @@ cmsApi.saveEntries = function(params) {
163163 entries = JSON . parse ( params . qstring . entries ) ;
164164 }
165165 catch ( ex ) {
166- log . e ( entries ) ;
166+ log . e ( params . qstring . entries ) ;
167167 common . returnMessage ( params , 400 , 'Invalid entries parameter' ) ;
168168 return ;
169169 }
170170
171171 transformAndStoreData (
172172 Object . assign ( { dataTransformed : true } , params ) ,
173173 null ,
174- JSON . parse ( params . qstring . entries ) ,
174+ entries ,
175175 function ( err1 ) {
176176 if ( err1 ) {
177177 log . e ( 'An error occured while storing entries in DB: ' + err1 ) ;
Original file line number Diff line number Diff line change @@ -290,6 +290,8 @@ common.in-last-weeks-plural = in the last {0} weeks
290290common.in-last-weeks = in the last week
291291common.in-last-months-plural = in the last {0} months
292292common.in-last-months = in the last month
293+ common.in-last-years-plural = in the last {0} years
294+ common.in-last-years = in the last year
293295common.time-period-select.custom-range = Custom range
294296common.time-period-select.presets = Presets
295297common.time-period-select.last-n = In the last
You can’t perform that action at this time.
0 commit comments