]> source.dussan.org Git - nextcloud-server.git/commitdiff
some more includes
authorThibaut GRIDEL <tgridel@free.fr>
Sun, 2 May 2010 20:33:36 +0000 (22:33 +0200)
committerThibaut GRIDEL <tgridel@free.fr>
Sun, 2 May 2010 20:33:36 +0000 (22:33 +0200)
inc/Console/Getopt.php
inc/System.php

index 7966d1acd9fc1dad776b29a9cd40b57ed70d697c..6f2f9c730791b66c8c4174aa20b65120a2a3ad75 100755 (executable)
@@ -18,7 +18,7 @@
 //
 // $Id: Getopt.php,v 1.21.4.7 2003/12/05 21:57:01 andrei Exp $
 
-require_once 'PEAR.php';
+oc_require_once( 'PEAR.php');
 
 /**
  * Command-line options parsing class.
@@ -72,7 +72,7 @@ class Console_Getopt {
      * This function expects $args to start with the script name (POSIX-style).
      * Preserved for backwards compatibility.
      * @see getopt2()
-     */    
+     */
     function getopt($args, $short_options, $long_options = null)
     {
         return Console_Getopt::doGetopt(1, $args, $short_options, $long_options);
index dc3acee97dba6f643d0e05f1e5108930007223b5..a9279ff687d84655cfb66307a13592f264da842c 100755 (executable)
@@ -19,8 +19,8 @@
 // $Id: System.php,v 1.36 2004/06/15 16:33:46 pajoye Exp $
 //
 
-require_once 'PEAR.php';
-require_once 'Console/Getopt.php';
+oc_require_once( 'PEAR.php');
+oc_require_once( 'Console/Getopt.php');
 
 $GLOBALS['_System_temp_files'] = array();