Skip to content

Commit

Permalink
Merge branch 'protector' into CorePack
Browse files Browse the repository at this point in the history
  • Loading branch information
nao-pon committed Oct 6, 2017
2 parents e0d5ada + 93206c0 commit c99e959
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -121,7 +121,7 @@
$values[] = 'NULL';
// a number
// timestamp is numeric on some MySQL 4.1
} elseif (is_numeric($row[$j]) && $fields_meta->type != 'timestamp') {
} elseif (preg_match('/^[0-9.]+$/', $row[$j]) && $fields_meta->type != 'timestamp') {
$values[] = $row[$j];
// a binary field
// Note: with mysqli, under MySQL 4.1.3, we get the flag
Expand Down
2 changes: 1 addition & 1 deletion xoops_trust_path/modules/protector/xoops_version.php
Expand Up @@ -11,7 +11,7 @@
$modversion['name'] = constant($constpref.'_NAME');
$modversion['description'] = constant($constpref.'_DESC');
$modversion['version'] = file_get_contents(dirname(__FILE__).'/include/version.txt');
$modversion['detailed_version'] = $modversion['version'].'.1';
$modversion['detailed_version'] = $modversion['version'].'.2';
$modversion['credits'] = 'PEAK Corp.';
$modversion['author'] = 'GIJ=CHECKMATE<br />PEAK Corp.(http://www.peak.ne.jp/)';
$modversion['help'] = '';
Expand Down

0 comments on commit c99e959

Please sign in to comment.