Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Mendel <cybot_tm@users.sourceforge.net>2007-03-19 20:55:39 +0300
committerSebastian Mendel <cybot_tm@users.sourceforge.net>2007-03-19 20:55:39 +0300
commit817e790762d33c1b216636ef20929d8473804eee (patch)
treed95a69f9bee45619b49c5ac88159a02d9bd04e8d /scripts
parentb800466c912d1f2560992bbbe862a23b4c530913 (diff)
synced/fixed vim line
Diffstat (limited to 'scripts')
-rw-r--r--scripts/check_lang.php2
-rw-r--r--scripts/decode_bug.php2
-rw-r--r--scripts/setup.php5
-rw-r--r--scripts/signon.php8
4 files changed, 8 insertions, 9 deletions
diff --git a/scripts/check_lang.php b/scripts/check_lang.php
index d89151cea1..9ff666cb91 100644
--- a/scripts/check_lang.php
+++ b/scripts/check_lang.php
@@ -1,6 +1,6 @@
<?php
+/* vim: set expandtab sw=4 ts=4 sts=4: */
/* $Id$ */
-// vim: expandtab sw=4 ts=4 sts=4 foldmarker={,} fdm=marker:
/**
diff --git a/scripts/decode_bug.php b/scripts/decode_bug.php
index 589f149922..6ce9a07097 100644
--- a/scripts/decode_bug.php
+++ b/scripts/decode_bug.php
@@ -1,6 +1,6 @@
<?php
+/* vim: set expandtab sw=4 ts=4 sts=4: */
/* $Id$ */
-// vim: expandtab sw=4 ts=4 sts=4 foldmarker={,} fdm=marker:
/**
diff --git a/scripts/setup.php b/scripts/setup.php
index bea938662e..ac6e9d7aee 100644
--- a/scripts/setup.php
+++ b/scripts/setup.php
@@ -1,4 +1,5 @@
<?php
+/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* phpMyAdmin setup script
*
@@ -9,10 +10,8 @@
* @author Michal Čihař <michal@cihar.com>
* @copyright 2006 Michal Čihař <michal@cihar.com>
* @license http://www.gnu.org/licenses/gpl.html GNU GPL 2.0
- * @version Subversion $Id$
+ * @version $Id$
*/
-/* $Id$ */
-// vim: expandtab sw=4 ts=4 sts=4:
// Grab phpMyAdmin version and PMA_dl function
define( 'PMA_MINIMUM_COMMON', TRUE );
diff --git a/scripts/signon.php b/scripts/signon.php
index c9344e9ee4..2231b627c8 100644
--- a/scripts/signon.php
+++ b/scripts/signon.php
@@ -1,11 +1,11 @@
<?php
+/* vim: set expandtab sw=4 ts=4 sts=4: */
/* $Id$ */
-// vim: expandtab sw=4 ts=4 sts=4:
// Single signon for phpMyAdmin
//
-// This is just example how to use single signon with phpMyAdmin, it is
-// not intended to be perfect code and look, only shows how you can
+// This is just example how to use single signon with phpMyAdmin, it is
+// not intended to be perfect code and look, only shows how you can
// integrate this functionality in your application.
/* Was data posted? */
@@ -14,7 +14,7 @@ if (isset($_POST['user'])) {
session_set_cookie_params(0, '/', '', 0);
/* Create signon session */
$session_name = 'SignonSession';
- session_name($session_name);
+ session_name($session_name);
session_start();
/* Store there credentials */
$_SESSION['PMA_single_signon_user'] = $_POST['user'];