1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-14 13:25:54 +00:00

prettify debug output

This commit is contained in:
Andrew Dolgov
2006-03-04 11:35:47 +01:00
parent 8ac0c627eb
commit cf1bc085fa
4 changed files with 9 additions and 27 deletions

View File

@@ -849,4 +849,8 @@ function getURLParam(strParamName){
return strReturn;
}
function leading_zero(p) {
var s = String(p);
if (s.length == 1) s = "0" + s;
return s;
}