summaryrefslogtreecommitdiff
path: root/_darcs/tentative_pristine
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-12-20 19:23:32 -0500
committerEvan Prodromou <evan@prodromou.name>2008-12-20 19:23:32 -0500
commitb8c0091390a9d0377eab80d77c9605d6b0ee428e (patch)
tree9a986cd246c22fedc6f48274b3fee4c6fd3cb7d7 /_darcs/tentative_pristine
parentd18c621bcf038f172141bd302911a313e6f5c30b (diff)
first step of phpcs-cleanup of index.php
darcs-hash:20081221002332-84dde-5834e12499fff0a23a8a6a76018f8beaa5ea8a96.gz
Diffstat (limited to '_darcs/tentative_pristine')
-rw-r--r--_darcs/tentative_pristine77
1 files changed, 52 insertions, 25 deletions
diff --git a/_darcs/tentative_pristine b/_darcs/tentative_pristine
index a4efd27ba..fa3a0e58e 100644
--- a/_darcs/tentative_pristine
+++ b/_darcs/tentative_pristine
@@ -1,25 +1,52 @@
-hunk ./lib/mail.php 115
-- $headers['Subject'] = sprintf(_('%1$s is now listening to your notices on %2$s.'), $other->getBestName(),
-+ $headers['Subject'] = sprintf(_('%1$s is now listening to your notices on %2$s.'),
-+ $other->getBestName(),
-hunk ./lib/mail.php 120
-- 'Faithfully yours,'."\n".'%4$s.'."\n"),
-- $long_name,
-- common_config('site', 'name'),
-- $other->profileurl,
-- common_config('site', 'name'));
--
-+ '%4$s'.
-+ '%5$s'.
-+ '%6$s'.
-+ "\n".'Faithfully yours,'."\n".'%7$s.'."\n\n".
-+ "----\n".
-+ "Change your email address or notification options at %8$s"),
-+ $long_name,
-+ common_config('site', 'name'),
-+ $other->profileurl,
-+ ($other->location) ? sprintf(_("Location: %s\n"), $other->location) : '',
-+ ($other->homepage) ? sprintf(_("Homepage: %s\n"), $other->homepage) : '',
-+ ($other->bio) ? sprintf(_("Bio: %s\n\n"), $other->bio) : '',
-+ common_config('site', 'name'),
-+ common_local_url('emailsettings'));
+hunk ./index.php 2
+-/*
++/**
+hunk ./index.php 23
+-require_once(INSTALLDIR . "/lib/common.php");
++require_once INSTALLDIR . '/lib/common.php';
+hunk ./index.php 25
+-# get and cache current user
++// get and cache current user
+hunk ./index.php 29
+-# initialize language env
++// initialize language env
+hunk ./index.php 44
+- 'recoverpassword', 'api', 'doc', 'register')))
+-{
++ 'recoverpassword', 'api', 'doc', 'register'))) {
+hunk ./index.php 51
+- require_once($actionfile);
+- $action_class = ucfirst($action)."Action";
++
++ include_once $actionfile;
++
++ $action_class = ucfirst($action).'Action';
++
+hunk ./index.php 57
+- if ($config['db']['mirror'] && $action_obj->is_readonly()) {
+- if (is_array($config['db']['mirror'])) {
+- # "load balancing", ha ha
+- $k = array_rand($config['db']['mirror']);
+- $mirror = $config['db']['mirror'][$k];
+- } else {
+- $mirror = $config['db']['mirror'];
+- }
+- $config['db']['database'] = $mirror;
+- }
++
++ if ($config['db']['mirror'] && $action_obj->is_readonly()) {
++ if (is_array($config['db']['mirror'])) {
++ // "load balancing", ha ha
++ $k = array_rand($config['db']['mirror']);
++
++ $mirror = $config['db']['mirror'][$k];
++ } else {
++ $mirror = $config['db']['mirror'];
++ }
++ $config['db']['database'] = $mirror;
++ }
+hunk ./index.php 70
+- call_user_func(array($action_obj, 'handle'), $_REQUEST);
+- }
++ call_user_func(array($action_obj, 'handle'), $_REQUEST);
++ }