]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Merge branch '0.7.x' of git://gitorious.org/laconica/bAvatar-clone without the uninte...
authorAdrian Lang <mail@adrianlang.de>
Mon, 20 Apr 2009 10:15:12 +0000 (12:15 +0200)
committerAdrian Lang <mail@adrianlang.de>
Mon, 20 Apr 2009 10:15:12 +0000 (12:15 +0200)
1  2 
lib/util.php
scripts/xmppdaemon.php

diff --cc lib/util.php
index 5d16e39b56a2214d9d5321c9cad1a88616bad47f,ab5e99593ee75a151562125827993b120b23364b..e0eda0114b7101e046c55df94a3cb95919550bd4
@@@ -1321,17 -1326,3 +1326,16 @@@ function common_compatible_license($fro
      // 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;
 +}
Simple merge