summaryrefslogtreecommitdiff
path: root/lib/common.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-05-17 11:47:01 -0400
committerEvan Prodromou <evan@prodromou.name>2008-05-17 11:47:01 -0400
commit3b14b7901c65144835d74b712279d0492c267c0c (patch)
tree9ce2b2053e00cda38030dbc0e2cba4c1db33c628 /lib/common.php
parentffc729453d487941e8a001d8a112c6509c892bc6 (diff)
fixes to make it all lint
Ran everything through php -l, found out that it didn't compile. So: fixed the am-I-running-in-Laconica check at the top of each file. Some syntax fixes in shownotice, showstream, common. darcs-hash:20080517154701-84dde-8d38da89c5b9cb3b40704adb04a4de880c204181.gz
Diffstat (limited to 'lib/common.php')
-rw-r--r--lib/common.php19
1 files changed, 11 insertions, 8 deletions
diff --git a/lib/common.php b/lib/common.php
index 069541026..0d734e2b4 100644
--- a/lib/common.php
+++ b/lib/common.php
@@ -20,7 +20,7 @@
/* XXX: break up into separate modules (HTTP, HTML, user, files) */
-if (!defined('LACONICA')) { exit(1) }
+if (!defined('LACONICA')) { exit(1); }
define('AVATAR_PROFILE_SIZE', 96);
define('AVATAR_STREAM_SIZE', 48);
@@ -41,10 +41,11 @@ $config =
'path' => '/'),
'avatar' =>
array('directory' => INSTALLDIR . 'files',
- 'path' => '/files'),
- 'db' => &PEAR::getStaticProperty('DB_DataObject','options'),
+ 'path' => '/files')
);
+$config['db'] = &PEAR::getStaticProperty('DB_DataObject','options');
+
$config['db'] =
array('database' => 'YOU HAVE TO SET THIS IN config.php',
'schema_location' => $INSTALLDIR . '/classes',
@@ -279,10 +280,10 @@ function commmon_date_string($dt) {
}
function common_redirect($url, $code=307) {
- static $status = (301 => "Moved Permanently",
- 302 => "Found",
- 303 => "See Other",
- 307 => "Temporary Redirect");
+ static $status = array(301 => "Moved Permanently",
+ 302 => "Found",
+ 303 => "See Other",
+ 307 => "Temporary Redirect");
header("Status: ${code} $status[$code]");
header("Location: $url");
common_element('a', array('href' => $url), $url);
@@ -299,4 +300,6 @@ function common_broadcast_notices($id) {
// XXX: set up gettext
-function _t($str) { $str }
+function _t($str) {
+ return $str;
+}