- Enforce minimum elapsed time on registration form
[scuttle] / api / tags_rename.php
index 20831e7166b130624e7fc664b44caa78612f68cd..191b3625441e246db15a7bd6ff51e802bf933073 100644 (file)
@@ -5,33 +5,33 @@
 // - oddly, returns an entirely different result (<result></result>) than the other API calls.
 
 // Force HTTP authentication first!
-require_once('httpauth.inc.php');
-require_once('../header.inc.php');
+require_once 'httpauth.inc.php';
+require_once '../header.inc.php';
 
-$tagservice =& ServiceFactory::getServiceInstance('TagService');
+$tagservice  =& ServiceFactory::getServiceInstance('TagService');
 $userservice =& ServiceFactory::getServiceInstance('UserService');
 
 // Get the tag info.
 if (isset($_REQUEST['old']) && (trim($_REQUEST['old']) != ''))
-    $old = trim($_REQUEST['old']);
+  $old = trim($_REQUEST['old']);
 else
-    $old = NULL;
+  $old = NULL;
 
 if (isset($_REQUEST['new']) && (trim($_REQUEST['new']) != ''))
-    $new = trim($_REQUEST['new']);
+  $new = trim($_REQUEST['new']);
 else
-    $new = NULL;
+  $new = NULL;
 
 if (is_null($old) || is_null($new)) {
-    $renamed = false;
-} else {
-    // Rename the tag.
-    $result = $tagservice->renameTag($userservice->getCurrentUserId(), $old, $new, true);
-    $renamed = $result;
+  $renamed = FALSE;
+}
+else {
+  // Rename the tag.
+  $result = $tagservice->renameTag($userservice->getCurrentUserId(), $old, $new, TRUE);
+  $renamed = $result;
 }
 
 // Set up the XML file and output the result.
 header('Content-Type: text/xml');
 echo '<?xml version="1.0" standalone="yes" ?'.">\r\n";
 echo '<result>'. ($renamed ? 'done' : 'something went wrong') .'</result>';
-?>

Benjamin Mako Hill || Want to submit a patch?