diff options
author | Sarven Capadisli <csarven@controlyourself.ca> | 2009-04-08 22:58:21 +0000 |
---|---|---|
committer | Sarven Capadisli <csarven@controlyourself.ca> | 2009-04-08 22:58:21 +0000 |
commit | dcee7f2f6230be385972af4abc9ea8653bf42668 (patch) | |
tree | ec41f0747a689a35505b34c29fbdf08c83d7cd4b /lib/util.php | |
parent | 03a4a4bebf2197097e672e094535ee067fe25441 (diff) | |
parent | 85873b1f2b5b6a3e065cf5d227df31380b6f239e (diff) |
Merge branch '0.7.x' into 0.8.x
Diffstat (limited to 'lib/util.php')
-rw-r--r-- | lib/util.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/util.php b/lib/util.php index 78b5a36f8..612aa3109 100644 --- a/lib/util.php +++ b/lib/util.php @@ -1379,3 +1379,16 @@ function common_compatible_license($from, $to) // XXX: better compatibility check needed here! return ($from == $to); } + +/** + * returns a quoted table name, if required according to config + */ +function common_database_tablename($tablename) +{ + + if(common_config('db','quote_identifiers')) { + $tablename = '"'. $tablename .'"'; + } + //table prefixes could be added here later + return $tablename; +}
\ No newline at end of file |